I am trying to set up a function string to distinguish between:
TEST # 9999 (other text)
and
TEST # 9999, (other text)
I want to select the first version and not the second
If I use:
/Function String 1 = "TEST # [0-9]+[ ]"
it works OK. But I want to match on the absence of the comma not the existence of the space so tried:
/Function String 1 = "TEST # [0-9]+[~,]"
to match on NOT the comma and it does not work. I do not understand why not. Could someone help? Thanks in advance.
TEST # 9999 (other text)
and
TEST # 9999, (other text)
I want to select the first version and not the second
If I use:
/Function String 1 = "TEST # [0-9]+[ ]"
it works OK. But I want to match on the absence of the comma not the existence of the space so tried:
/Function String 1 = "TEST # [0-9]+[~,]"
to match on NOT the comma and it does not work. I do not understand why not. Could someone help? Thanks in advance.