short question: i want to have all numbers (only the first 4 digit number) from a list which start with “01”:
0127,Central WM
0128,Central WM
0129,Central WM
0130,Central WM
089I,Inbound EWM
089O,Outbound EWM
089P,PSA in EWM
9988,Packstücke WM
CM01,CM01 in 1000
CM02,CM02 in 1000
e.g. “0129”
I created a RegEx expression: \b(01)…
The goal is to have only 4 digit numbers, but the result also displays also numbers with 3 digits. What is the correct expression?