In Perl, how do I extract the text in a string if I knew the pre and post parts of the text?
Example:
Input: www.google.com/search?size=1&make=BMW&model=2000
I would like to extract the word 'BMW' which is always in between "&make=" and the next "&"
|
|
|
Don't use a regular expression. Use URI and URI::QueryParam, like so:
|
|||
|
|
|
Use a Regular expression:
My regex assumes that you would want to capture anything that appeared in the make field. The
Hope that helps! |
|||||||||||
|