|
3 |
edited tags
|
||
|
2 | Add related links | ||
|
Hi. I have an text that consists of information enclosed by a certain pattern. The only thing I know is the pattern: "${template.start}" and ${template.end} To keep it simple I will substitute ${template.start} and ${template.end} with "a" in the example. So one entry in the text would be:
I do not know how many of these entries are concatenated in the text. So the following is correct too:
I want to write a regular expression to extract the information enclosed by the "a"s. My first attempt was to do:
which works as long as there is only one entry in the text. As soon as there are more than one entries it failes, because of the
What I want to get is something like
It would be great to being able to extract each entry out of the text and from each entry the information that is enclosed between the "a"s. By the way I am using the QRegExp class of Qt4. Any hints? Thanks! Markus Multiple variation of this question have been seen before. Various related discussions:
and probably others... |
||||
|
1 |
|
||
Using an asterisk in a RegExp to extract data that is enclosed by a certain patternHi. I have an text that consists of information enclosed by a certain pattern. The only thing I know is the pattern: "${template.start}" and ${template.end} To keep it simple I will substitute ${template.start} and ${template.end} with "a" in the example. So one entry in the text would be:
I do not know how many of these entries are concatenated in the text. So the following is correct too:
I want to write a regular expression to extract the information enclosed by the "a"s. My first attempt was to do:
which works as long as there is only one entry in the text. As soon as there are more than one entries it failes, because of the
What I want to get is something like
It would be great to being able to extract each entry out of the text and from each entry the information that is enclosed between the "a"s. By the way I am using the QRegExp class of Qt4. Any hints? Thanks! Markus
|
||||
