Hello my name is marco
我想用< br />替换第一个空格(Hello和我之间).只有第一个.
在C#/ .NET 3.5上执行此 *** 作的最佳方法是什么?
解决方法 无需添加子字符串,以下将仅查找第一个空格实例.从 MSDN开始: @H_419_26@
Reports the zero-based index of the first occurrence of the specifIEd
string in this instance.
string x = "Hello my name is marco"; int index = x.IndexOf(" "); x= index >=0 ? x.Insert(index,@"<br />") : x;
编辑:如果您不确定是否会出现空间,则必须进行一些验证.我已经相应地编辑了答案.
总结以上是内存溢出为你收集整理的c# – 替换字符串中的第一个匹配项全部内容,希望文章能够帮你解决c# – 替换字符串中的第一个匹配项所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)