c# – 替换字符串中的第一个匹配项

c# – 替换字符串中的第一个匹配项,第1张

概述我有这个字符串: Hello my name is Marco 我想用< br />替换第一个空格(Hello和我之间).只有第一个. 在C#/ .NET 3.5上执行此 *** 作的最佳方法是什么? 无需添加子字符串,以下将仅查找第一个空格实例. 从 MSDN开始: Reports the zero-based index of the first occurrence of the specified 我有这个字符串:

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# – 替换字符串中的第一个匹配项所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1225375.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存