Cutextract parts of a url from a table column

Hi,
i have a table with urls and other columns i would like to extract parts of the url in a new column.
the pattern of the url www.webseite.de/text/123456789/mehrtext/1/
i would like to extract the variable number sequence from the utl in a new column. i don’t need the /1/ at the end.
many thanks

Hello @wanglunberlin

You can test with a ‘String Manipulation’ node with the following code:

regexReplace($url$, ".*?(\\d+).*", "$1")

BR

1 Like

Very cool! Worked perfectly. Many thanks!

1 Like

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