Hi Team,
I have a column with below values.
Input : 000-24.00000.001-S
output : 000-24.00000.S
Input : 000-24.00000.001-P
output : 000-24.00000.P
please let me know how to go about it,
Thanks,
Sri
Yes it is - see attached
Regex_Replace([Input], "(\d{3})-(\d{2}\.\d{5}\.)\d{3}-(\w)", "$1.$2$3")
Regex_Replace([Input], "(\d{3}-\d{2}\.\d{5}\.)\d{3}-(\w)", "$1$2")
@sriniprad08 again regex
REGEX_Replace([Input], '(.*)\..*\-(.*)', '$1.$2')
thank you @alexnajm Perfect. is it possible to replace one of the "-" with "." like in Output 2
output 1 : 000-24.00000.S
output 2 : 000.24.00000.S
output 1 : 000-24.00000.P
output 1 : 000.24.00000.P
thanks
sR
thanks @binu_acs is it possible to do replace - with . in output 2 please?