Hello
I have of string of 9 figures for example 471009123
Keeping THIS example :
I search a fast tip which returns 0 (or anything else) if no zero are
in positions 1 and 8 & 9 (here 4 and 23)
Position> is good with –start- but would be better with –end- !
Regards
Position>
Moderators: JRL, Dorian (MJT support)
Re: Position>
If nm returns 1 (one), then a match is found to satisfy your conditions.
Code: Select all
Let>string=471009123
*----------123456789
Let>regex=^([^0])\d{6}(?1){2}$
RegEx>regex,string,0,match,nm,0
If>nm>0
MDL>A match is found.
Endif
Re: Position>
Thanks armsys
I could not make it up !
I could not make it up !
Re: Position>
Glad to know you've solved your problem.