So for instance if I had this string :
"color=green&animal=panda"
Is it possible that I can with regex, return green because it is after color= ?
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.
Since JavaScript does not support look-behinds (unfortunately), you can only do that by including the preceding sub-string. Group
green, and refer to the group.Look-aheads do exist though, so the following can be used to match “green”, but not “greener”: