Answers for "special characters required in regex in flutter"

0

how to use RegEx flutter

everything for anything 

https://github.com/suragch/string_validator/blob/master/lib/src/validator.dart
Posted by: Guest on October-01-2021
0

flutter regex validation

You could make the first part optional matching either a + or 0 followed by a 9. Then match 10 digits:

^(?:[+0]9)?[0-9]{10}$
^ Start of string
(?:[+0]9)? Optionally match a + or 0 followed by 9
[0-9]{10} Match 10 digits
$ End of string
Regex demo
Posted by: Guest on March-25-2021

Code answers related to "special characters required in regex in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language