I was looking at previous answers to this but it does not work on mine. I need to change a string in a column from “22yrs 6mon” to months only. Please let me know how to do this? It is very urgent!!
You could use a Regex in the Expressio node
parse_int(regex_extract($["duration_txt"], "(\\d+)(?=mon)", 1))
3 Likes

