Regular expression for 3 character alphanumeric string separated by _
-
hi well i am looking for the expression validator for this kind of string aa1_aa2_aaa if anyone could help......
-
hi well i am looking for the expression validator for this kind of string aa1_aa2_aaa if anyone could help......
You could search about Regular Expression.It is simple.
studing is processing in this life.
-
hi well i am looking for the expression validator for this kind of string aa1_aa2_aaa if anyone could help......
hi, try this one. ^(([a-zA-Z\d]{3}_){2})([a-zA-Z\d]{3}) It will check for aplhanumeric strings seperated. Can U give more examples of the type of string you want? Hope to be of help. take care mani
-
hi well i am looking for the expression validator for this kind of string aa1_aa2_aaa if anyone could help......
Do you mean that the first two should end with a digit: ([a-z]{2}\d_){2}[a-z]{3} or that the first two can contain digits: ([a-z\d]{3}_){2}[a-z]{3} or that all three can contain digits: ([a-z\d]{3}_){2}[a-z\d]{3} ?
Despite everything, the person most likely to be fooling you next is yourself.
-
Do you mean that the first two should end with a digit: ([a-z]{2}\d_){2}[a-z]{3} or that the first two can contain digits: ([a-z\d]{3}_){2}[a-z]{3} or that all three can contain digits: ([a-z\d]{3}_){2}[a-z\d]{3} ?
Despite everything, the person most likely to be fooling you next is yourself.
-
-
I don't need to search for a regular expression. You should reply to the original post.
Despite everything, the person most likely to be fooling you next is yourself.
Sorry, I don't want to hurt you. Infact I was replying to the orignal post. Is there any way to move my post to the orignal post?
-muneeb A thing of beauty is the joy forever.