I am looking for a way to remove the first occurrence of a comma in a string, for example
"some text1, some tex2, some text3"
should return instead:
"some text1 some text2, some tex3"
So, the function should only look if there's more than one comma, and if there is, it should remove the first occurrence. This could be probably solved with the regex but I don't know how to write it, any ideas ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…