Here are the data
[StupidHtml]: AZaz.-09^abcdabcd^a^a^
I need a regular expression to extract data between [StupidHtml]:and the first occurrence^
I am currently using
(?<=\[StupidHtml\]\:)(.*)(?=\^)
But this leads to:
AZaz.-09^abcdabcd^a^a
I need to reach Azaz.-09
source
share