I have a column with such as Alpha :15s V1 .Beta :15s V2 .Delta :06s V3. I am trying to use regexreplace but it won't remove the V from the string. Here is the formula which I have used so far.
=REGEXREPLACE(T2, "[V]|[V1]-|[V2]|[V3]","")
How do I get this to work where I get the output just as Alpha :15s

