c# – 从String中的某个字符后获取字符

c# – 从String中的某个字符后获取字符,第1张

概述我需要在字符串中的某个字符匹配后获取字符.请考虑我的输入字符串与预期的结果字符集. 示例字符串 *This is a string *with more than *one blocks *of values. 结果字符串 Twoo 我做到了这一点 string[] SubIndex = aut.TagValue.Split('*'); string SubInd = "" 我需要在字符串中的某个字符匹配后获取字符.请考虑我的输入字符串与预期的结果字符集.

示例字符串

*This is a string *with more than *one blocks *of values.

结果字符串

Twoo

我做到了这一点

string[] SubIndex = aut.TagValue.Split('*');            string SubInd = "";            foreach (var a in SubIndex)            {                SubInd = SubInd + a.Substring(0,1);            }

任何帮助将不胜感激.

谢谢

解决方法 liNQ解决方案:

var str = "*This is a string *with more than *one blocks *of values.";var chars = str.Split(new char[] {'*'},StringSplitoptions.RemoveEmptyEntrIEs)               .Select(x => x.First());var output = String.Join("",chars);
总结

以上是内存溢出为你收集整理的c# – 从String中的某个字符后获取字符全部内容,希望文章能够帮你解决c# – 从String中的某个字符后获取字符所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存