I am using the below pattern to find all the data between two words, placed in multiple lines.
/START(.+?)END/
But this doesn’t seems to work as expected. Can someone help me out with a exact pattern.
Thanks.
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.
assuming you can use Python for example.
Split your string on “END”, go through each splitted items, check for START,and do a substring. Use the split method of your preferred language.