If I had a div in HTML that had class=’blah user_foo’, whats the Match() regex to get the ‘foo’ bit?
Share
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.
The above handles whitespace; and other things before the class specification.
It doesn’t handle the case where
class='single-quoted-something'; you could do that with a backreference. It also doesn’t handle malformed HTML.