example strings
785*()&!~`a ##$%$~2343 455frt&*&*
i want to capture the first and the third but not the second since it doesnt contain any alphabet character plz help
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In fact, I think
[a-zA-Z]might suffice to match your strings.To capture the whole thing, try:
^.*[a-zA-Z].*$