Dear Team,
I have to extract below key skills values from web, but with separated by comma(" , "),
Currently getting like this by using get value activity,
Chemical EngineeringProcess EngineeringProcess Simulation ChemcadDistillation
Requirement is,
Chemical Engineering, Process Engineering, Process Simulation Chemcad, Distillation
Thanks,
Amol
lrtetala
(Lakshman Reddy)
2
Hi @Amol_Golhar
Can you try the below
System.Text.RegularExpressions.Regex.Replace(Input, "(?<=[a-z])(?=[A-Z])", ", ").TrimStart(","c).TrimStart()
Cheers!!
2 Likes
system
(system)
Closed
3
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.