Italian regex.split - Fulvio75    Dec 4, 2023 Ho notato un probabile "malfunzionamento" di Regex.Split, ovvero:
Dim components() As String
components = Regex.Split("", "1234")
se non metto il pattern la... Spanish Hacer Left, Right, Mid y Split de Visual Basic en B4A (casi tutorial ;-) ) - bgsoft    Oct 11, 2013   (18 reactions) Hola a todos: Despues de leer que a muchos que venimos de Visual Basic echamos a faltar algunos tratamientos de cadenas como son los tipicos Left, Right, Mid y Split, quiero compartir con vosotros una forma facil de hacerlo. Si lo poneis en un modulo y las haceis publicas lo podreis llamar desde... Text.SubString2(Start-1,Start+Length-1) End Sub Sub Split(Text As String, Delimiter As String) As String() Return Regex.Split(delimter,Text) End Sub Espero haber ayudado Saludos:... B4J Question [SOLVED] SplitPane dividers - moore_it    Jul 7, 2025 how to work the splitpane dividerposistions when the splitpane have 3 panes ?
this code not work
SplitPane1.DividerPositions = Array As Double(0.33,0.33,0.33)
Thanks.... B4J Tutorial SplitPane Tutorial - Erel    Dec 16, 2015   (17 reactions) B4J v4.00 adds support for SplitPane container. SplitPane is a container made of two or more sections divided with movable dividers. The SplitPane orientation is either horizontal or vertical. You can combine multiple SplitPanes to achieve more complicated layouts. Each section of the SplitPane is made of a layout file. This means that the layout will be split to multiple smaller layout files... of the following layout files: - Main: Horizontal SplitPane with three sections and menu bar... B4J Question SplitPane: How to set a width on a particular pane - Mashiane    Oct 3, 2023 Hi
I have a split pane with 3 panes. I have set the min and max sizes
SDSplit.SetSizeLimits(0, 10, 400)
SDSplit.SetSizeLimits(2, 10, 400)
This is fine, when the page loads, the 3rd pane is not 400 (as that is just a max width), I want it to fill the space and be 400.
How can I set the pane... B4A Question What is the fastest way to split this string? - RB Smissaert    Dec 2, 2023 Moving data from a text file to SQLite database.
If I have a line in the text file like for example this: 123, "John,", Smith
Then what would be the fastest way to split this line in... B4A Tutorial Running B4A Apps in Split Screen Mode - agraham    Jul 3, 2020   (31 reactions) Tutorial – Running B4A Apps in Split Screen Mode
I’m learning this as I go along so there may... been playing with split screen mode, in anticipation of the forthcoming foldable and dual screen... B4J Question Splitting an empty TextField.Text - LucaMs    Nov 25, 2022 'TextField1.Text is empty - just loaded the layout. 'Logs zero. Log("TextField1.Text.Length = " & TextField1.Text.Length) Dim str() As String = Regex.Split(",", TextField1.Text) 'Logs 1 instead of zero. Log("str length = " & str.Length) EDIT: Dim str() As String = Regex.Split(",", "") does the same.... B4A Question RegEx.Split Maintain Case of the Split Elements - Mahares    Apr 27, 2021 This works well, but the split elements do not preserve the case. Dim sentence = "There is NO End to the end of the Covid19" As String 'works Dim pat As String ="end" Dim l As List l.Initialize Dim m As Matcher m = Regex.Matcher2(pat, Regex.CASE_INSENSITIVE, sentence) 'Matcher2 not Matcher Do While m.Find Log(m.Match) l.Add(m....ToLowercase Dim s() As String =Regex.Split(pat,sentence) For i=0 To s.Length -1 Log... Italian B4J Archive library - compress folder by setting the maximum size by splitting the same folder - ivanomonti    Feb 17, 2023 Sto usando questa libreria e mi sembra che funzioni molto bene ma ho un problema da sottoporre, devo comprimere cartelle con massimo 99 mb anche se sono superiori a volte arrivano a 500 mb (sono documenti pdf) e devono seguire la nomenclatura esempio cartella documenti di cantiere 2-1.zip cartella documenti di cantiere 2-2.zip ... Mi chiedevo se questa libreria ha qualcosa che può darmi questo ... Page: 1   2   3   4   5   6   7   |