
hi
here the app looks for a 16-digits number , but what i need is to scan for a number like this :
"1234 5678 9123 4567"
i mean 4 part of 4-digit numbers ; so what do i have to write in this line of the code.
please answer me .i have to complate my app in these three days
コメント
4件のコメント
Hi
You could try something like
As said by https://regex101.com/
More information: https://www.regular-expressions.info/quickstart.html Best regards Koen de LeijerHi,
Please also find the information about all supported syntax in the Regular Expressions section of the RTR SDK documentation.
thanks for your answers ;
i found this :
\\w\\w\\w\\w\\040\\w\\w\\w\\w\\040\\w\\w\\w\\w\\040\\w\\w\\w\\w
it works as i want , but i need some thing that works with every kind of 16-digit numbers with or without spaces every where contains all of this kinds:
1234 4567 1234 3466
1 234 567 891 234 567
1234567891234567
or...
if its not possible , say me :(
Hi,
Please try this one regular expression:
([0-9]|\040){16,}
サインインしてコメントを残してください。