Match string with regex if first character is numeric

Hi,

How can I match the strings, what starts with 8pcs numeric characters (0-9)?

Thank you in advance!

Roland

Hi @rolandnemeth
You can try by extracting the 8 numbers with a ‘Regex Split’ node:

.*?^(\d{8}).*

Then a ‘Rule Engine’ node afterwards:

MISSING $split_0$ => FALSE
NOT MISSING $split_0$ => TRUE

image

BR

4 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.