Link to home
Start Free TrialLog in
Avatar of totoroha
totoroha

asked on

Regex to match the string

I have three distinctive strings:
"bparswjncawtyduwkzsoxcfwlubl" ,"rkkdcu2btgjdkboqd1ihtgdwwejlblpa" and "VQZbQRJNBwVJVwCcV0JTRHBZWEDbWhNW".

I used this regex: [a-zA-Z]{28,35} but it didn't work. How do I perform regex search with the above samples?

Sincerely,

Peter
ASKER CERTIFIED SOLUTION
Avatar of ozo
ozo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of totoroha
totoroha

ASKER

Oh yeah, after I asked, I recognized that there is number in my string so I did the same as you ozo and got it.
Do you know any good sources with a lot of example on regex?
The best site I know for regular expressions is this: http://www.regular-expressions.info/

I think it's maintained by the same people that develop RegexBuddy.

HTH,
Dan