Since i'm not so good at regex how can i match some conditions in a string, StaticString_1number:1number:more than 1number.
Example:
string_3:0:12344555 - Match
string_s:0:12344555 - No match
string_3:s:12344555 - No match
string_3:0:123s4555 - No match
Thanks.
string_3:0:12344555- it's ok regex matched Input -string_s:0:12344555- not ok Input -string_3:s:12344555- not ok Input -string_3:0:123s4555- not ok