Hi all,
I using this syntax " ^(\d+)\s-\s(.+)$ " in the Regex tool (Parse) to separate data after first hyphen like below:
Col1 Col2 Col3
31055 - Multiple Costs 31055 Multiple Costs
however anywhere in my numbers is is decimal the values coming as null like below
Col1 Col2 Col3
30144.4 - Purchase Costs Null Null
Desired output:
Col1 Col2 Col3
30144.4 - Purchase Costs 30144.4 Purchase Costs
kindly help in getting the desired result my modifying or with new syntax in the Regex tool