I am trying to use the Regex tool to find a word and a series of numbers.
The column I am working with is a string column that is a "comment" column, meaning any text or numbers can be entered into the column. I need to locate the word "Cluster" and then pull the 2 - 4 numbers after that. The numbers will have a period. Here are some examples...
Cluster 2.3
Cluster 11.1
Cluster 11.10
There may be text before or after the word "Cluster".
After I find that, I need the first 1 - 2 numbers.
I know this is possible with the regex tool. I just don't know enough regex to write it. Thanks in advance.