Hello,
I have a string of that I've extracted from AI Build (model: Extract information from invoices) to Text.
I need to create an expression that pulls numbers which begin with "111" or "222".
Example String:
111523 o 78 i 23
Text Text 12 o a & #,
xyz abcdfgh 123
aaa bc 1 # , 222423
xyz 1
Text Text Text
Expected Result:
111523 222423
____________________________________________________________________________
How to build a compose so that I only got the 111... & 222... numbers?*
I tried split() Function but with that I was not able to solve this.
split(triggerBody()[‘text’],’111’) - with that I only separate the number 111 but I want to separate the whole number beginning with 111 (or 222).
Any ideas?
Thank you!