Using regular expression to display a part of string in Tableau

Viewed 22

I am trying to split the number from this string 12345New, and display only New

Using this code:

REGEXP_EXTRACT("1234New", '(\w+)') 

displays: 1234

0 Answers
Related