I need a regex that will get the name of a label. The labels look like this:
lbl LabelName
The regex will need to return LabelName. I manged to make this:
(?<=\slbl\s).+?(?=\s)
This works fine as long there is only one character between "lbl" and "LabelName". If I add two spaces or more spaces then it will return the extra spaces.
I tried (?<=\slbl\s+).+?(?=\s) but it doesn't work either.