Hi,
i need to find the column that starts with 'Count (' and i need to replace it with this string: NR
Only one column has these features.
For example: Count (NDG) -> NR
If i use the regex ^Count \( and the replacement string NR i get NRNDG)
How can i obtain only the NR?
Thanks