AB# 33805717- 00 R/E FROM NA#52198052- 00
SOS 032122 TO 032122, TOTAL BILLED $2
OA FILMED UFE: 920220831200900
FILM NUMBER: VRG40947802 REC DATE: 070222
I have to find the 11 digit number VRG40947802 , this can be 15 digit also some times.
I have used regex : “(\d{11,15}|[D]\d{11,15})” working fine on this one , but failing on other string.
FILM NUMBER AGILE:19517960 FSRECVDATE 062722
DIV ATL AUDIT NUMBER 44523104
FILM NUMBER: ATL34910475, DDE AGILE ID: 19517960,
ROD NUMBER: 44523104, DIV: ATL,
RCVD DATE: 06/27/2022
In this i have to get ATL34910475, but isMatches activity is giving false .
Yes… it would definitely going to help to build your regex knowledge and remember to go through the explanation on right side (if you are using regex101.com)
Basically : ABC is always fixed in the string and other character are always between length 11-15, so this regex is recognising ‘:’ and A-Z character which is always unique for this number string.
Addition : if lenght is > 15 , then it’s input error, not the BOT level error which i discussed, but this regex is also not dynamic , it is static, i will see for some solid also.
hi everyone, I have similar issue.
Hi, I’m trying to find the number that is available after the “-”. For example in the below lists, i need only the numbers that are after “-”.
For example in this “S18NNE013 - 040 FC” in need only number 40.
and in this “21-0438 - 043 (DP Converted)” i need only number 43.
I tried to use this regex \s[-^\d]\w{2} and with this I’m able to select space, 0 and the number, but i just need number. Can anyone help me to get the required result.