Italian Come controllare che una stringa contenga solo numeri con Regex

Lello1964

Well-Known Member
Licensed User
Longtime User
Vorrei controllare che una stringa contenga solo numeri da 0 a 9 senza punti o spazi cone Regex.

Ho trovato questo :

test regex:
dim test as string = "00000a"

log (Regex.IsMatch("[0-9]",test))

torna sempre false

non funziona.
 
Last edited:

Star-Dust

Expert
Licensed User
Longtime User
B4X:
Dim test as string = "00000a"
log (Regex.IsMatch("[0-9]+",test))

puoi anche usare "^\d+$"
 
Top