Can anyone help me out with a Regex that will exclude words that are inside:
title = "EXCLUDE ANYTHING HERE".
Can anyone help me out with a Regex that will exclude words that are
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.
well, with “regex” you won’t exclude nothing. You can use a programing language or editors (vi or sed for example) to match this regex and delete the matched text for you.
what i understood is. You want to delete all UPPERCASE Letters after “title=” right?
with ruby you can do something like that
at x you will have just the “title=bbb” as you wanted.