i'm trying to capture this kind of information
ABC 123,456 (100%) or ABC 1,234,567 (100%), ABC 12 (100%)
My trigger is
ABC(.*)\(.*
here is the problem, 1% = 123 456, I have a missing "," sign here.
when i try to assign this value to a variable, it will equal to 123.
the value which i'm looking for is either "123,456" or "123456"
btw, string.len(%1) = 3
print(%1) = 123 456
ABC 123,456 (100%) or ABC 1,234,567 (100%), ABC 12 (100%)
My trigger is
ABC(.*)\(.*
here is the problem, 1% = 123 456, I have a missing "," sign here.
when i try to assign this value to a variable, it will equal to 123.
the value which i'm looking for is either "123,456" or "123456"
btw, string.len(%1) = 3
print(%1) = 123 456