How to add comma after specific string

Hello,

i have string like below
Project (DC0087) DSNA MOeLITE Project (P003746) IDFM Ingenierie Applicative

i need to add , before each Project like below
Project (DC0087) DSNA MOeLITE ,Project (P003746) IDFM Ingenierie Applicative

help me on same

Hi @Mathkar_kunal

You can do it this way
inputstring = inputstring.replace(" Project",",Project")

Hope this helps!
Thank you

1 Like

@Mathkar_kunal

Please try this

StrVariable.Replace("Project",",Project").Trim(","c)

Cheers

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