I´m fairly new to RegEx.
I have a expression to find one or multiple digit numbers followed by X and one of a specific character.
\d+X[!l1IL]
so i can find 2x! oder 22x1
but if there is a >> in front, i dont want it. i tryed to do negativ lookbehind like
(?<!>>)\d+X[!l1IL]
and it worked if i have a single digit number in front of the X like >>2X1 but it stoped workin if there are multiple digit numbers in between like >>222X1 and i dont get why.