Hello to all,
I am new to this forum. I recently started learning java language. I want to replace first occurrence of a regular expression in a string in my c# program.
For Eg.
If string s1= ",a,b,c,d,e," then I want to do something like
s1 = replacefirst(",","")
to give following result
s1 = "a,b,c,d,e"
It means I want to replace first colon in C# program. Please help me to solve this problem.
Bookmarks