How can I get a portion of the string from the beginning until the first non-alphabetic character?
Example strings:
Hello WorldHello&WorldHello5World
I’d like to get "Hello" from each of the above input strings.
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.
You need to use the preg_split feature.
You can access Hello by $words[0], and World by $words[1]