Get the Values from web page

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

Hi @Amol_Golhar

Can you try the below

System.Text.RegularExpressions.Regex.Replace(Input, "(?<=[a-z])(?=[A-Z])", ", ").TrimStart(","c).TrimStart()

Cheers!!

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.