Bug? In the regex documentation

antonomase

Active Member
Licensed User
Longtime User
Hi,

An error in the documentation about Regex
In the IsMatch help displays
B4X:
If Pattern.IsMatch("\d\d\d", EditText1.Text) = False Then ...
instead of
B4X:
If Regex.IsMatch("\d\d\d", EditText1.Text) = False Then ...
 
Top