Hi Team,
Im unable to extract the data from the text file (want to extract the 1440, 1080, 81, 8, 1, 320 values) please find the file
Original file.TXT (3.1 KB)
Thanks
Hi Team,
Im unable to extract the data from the text file (want to extract the 1440, 1080, 81, 8, 1, 320 values) please find the file
Original file.TXT (3.1 KB)
Thanks
Hi @sreene26
Try this regex:
(?<=[A-Z]{1,}\d{1,}[A-Z]?\s+)\d{1,}(?=\s*\d{2,}\s{1,}\d*)
Hope it helps!!
Can I Use this (?<=[A-Z]{1,}\d{1,}[A-Z]\s+)\d{1,}(?=\s\d{2,}\s{1,}\d*)
While L20231031AA
Please confirm
Hi @sreene26
Your expression is right. Use this:
(?<=[A-Z]{1,}\d{1,}[A-Z]?\s+)\d{1,}(?=\s\d{2,}\s{1,}\d*)
Regards,
Hi @sreene26
please use the below regex expression
(?<=[A-Z]+\d+[A-Z]*\s+)(\d+)(?=\s+\d+\s+)
Regards
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.