B4A Question Regex text - MetalOS (first post)    Apr 18, 2023
' Récupérer le texte du TextEdit
Dim text As String = ACEditText1.Text
' Diviser le texte en utilisant la regex "\s{10}"
Dim lines() As String = Regex.Split...="PM"
End If
Dim DateSelect As String=btnDate.xLBL.Text... B4A Question Regex B4A & B4J - LucaMs    Dec 4, 2023 Dim components() As String components = Regex.Split("", "1234") B4A: 5 strings - "" "1" "2" "3" "4" B4J: 4 strings - "1" "2" "3" "4" https://www.b4x.com/android/forum/threads/regex-split.157791/... B4A Question Regex Pattern in B4XFloatTextField (B4XDialog Custom) - asales    Jan 21, 2019 The B4XInputTemplate has a RegexPattern property, but I can only set and check one field.
Is possible to set a regex pattern to validate the input in B4XFloatTextField?
Or create a B4XInputTemplate with several input fields?
I have this in B4XDialog custom and would be nice to check the fields (date, time, value) and enable the OK button when the pattern matches.
76550... B4J Question regex for split this string:10.8+5-3 - Roberto P.    Jul 4, 2021 can someone help me to extract the rows from the value indicated in the object.
target:
10.8+
3+
5
r... B4A Question Regex string contains some letter - OliverA (first post)    Mar 17, 2020   (1 reaction)
Hi Oliver: Your pattern produces the same results as the one I posted:
did you try
"xxxx&quo... B4J Question How To Regex This Text - drgottjr (first post)    Jul 14, 2021   (1 reaction) dim text as string = file.readstring( your_file ) to read in your file,
then apply your constraint Dim splitter As List = Regex.Split2( "=:", Regex.MULTILINE, text),
then step through... it's just one big string." this screws with the regex splitter because it makes the beginning... B4A Question RegexBuilder - dividing the string into parts - kisoft    Dec 7, 2018 Hi
How to divide a string into parts using this class?
https://www.b4x.com/android/forum/threads/b4x-regexbuilder-builder-for-regular-expressions.83495/#content
For example:
dim str as string... B4A Question Still need help with regex (splitting string) - XverhelstX    Jan 15, 2012 Hey everyone,
I still don't get on how to work with regex and get content from a string.
This is a string I am using:
25. Apples 25 This String(1)14/02/2011
The string I want from... B4J Question Parsing ASCII Text With Regex.Split() - RichardN    Mar 8, 2018 As String = "Joe Bloggs|Alan Smith|George Brown"
Dim People() As String = Regex.Split.... Unfortunately trying to parse this symbol using Regex.Split("|", Text) produces... B4A Question use regex to filter B4XFloatTextField - tsteward    Mar 14, 2020 I like how in the B4XInputTemplate way you can use regex to signal when input is correct with the red or green outline.
Is there a way I can do this with a B4XFloatTextField... Page: 1   2   3   4   5   6   7   |