Can someone please help me with regex for the string between 'request=' and '">'?
For example for request=this_is_the_text_I_need"> regex would return 'this_is_the_text_I_need'.
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.
This should work:
request=(.+?)">. It will extract any text which is betweenrequest=and">. It should allow you to access the value through the use of regex groups.Note: I am assuming that you are using the single quotes to denote the answer you are after, and do not want them as part of the returned value.