获取字符串数组的子字符串的最佳方法是什么?

发布于 2025-01-08 03:48:55 字数 216 浏览 0 评论 0原文

我有这样的事情:

string[] split = ListOfUsers.Split(new Char[] { ';', ',', ' ' });

“split”中的每个字符串开头都有一个“@”符号,我想去掉它。在不进入 for 循环的情况下获取该数组的子字符串的理想方法是什么?我可以使用 Linq 来代替吗?

感谢您的浏览:)

I have something like this:

string[] split = ListOfUsers.Split(new Char[] { ';', ',', ' ' });

Each string in "split" has an "@" sign at the beginning, and I want to get rid of it. What would be the ideal way to get the substring of this array, without getting into a for loop. Can I use Linq instead?

Thanks for looking :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

埋情葬爱 2025-01-15 03:48:55

String.Trim 超载正是这样做的:从字符串的开头和结尾删除指定的字符:

string[] split = ListOfUsers.Split(new Char[] { ';', ',', ' ' });
string[] trimmed = split.Select(s => s.Trim('@')).ToArray();

如果您的字符串在开头或结尾包含多个 @ ,或以 @ 结尾,则可以这样做超出你的预期。在这种情况下,您也可以简单地使用 String.Substring

string[] split = ListOfUsers.Split(new Char[] { ';', ',', ' ' });
string[] trimmed = split.Select(s => s.Substring(1)).ToArray();

There is an overload of String.Trim that does exactly this: removes the specified characters from the beginning and end of a string:

string[] split = ListOfUsers.Split(new Char[] { ';', ',', ' ' });
string[] trimmed = split.Select(s => s.Trim('@')).ToArray();

If your strings contain multiple @s in the beginning or end with a @ this will do more than you intended. In that case, you can also simply use String.Substring:

string[] split = ListOfUsers.Split(new Char[] { ';', ',', ' ' });
string[] trimmed = split.Select(s => s.Substring(1)).ToArray();
过潦 2025-01-15 03:48:55
var split = ListOfUsers.Split(new Char[] { ';', ',', ' ' });
var cleaned = split.Select(s => s.Substring(1));
var split = ListOfUsers.Split(new Char[] { ';', ',', ' ' });
var cleaned = split.Select(s => s.Substring(1));
眼趣 2025-01-15 03:48:55

除了修剪之外,正如 Jon 建议的那样,您还可以使用正则表达式:

Regex regex = new Regex("@\\w*");
var userNames = regex.Matches(ListOfUsers).OfType<Match>().Select(x => x.Value);

Beside trimming, as Jon suggested you can use regular expressions:

Regex regex = new Regex("@\\w*");
var userNames = regex.Matches(ListOfUsers).OfType<Match>().Select(x => x.Value);
萝莉病 2025-01-15 03:48:55

可能只是添加

ListOfUsers.Split(new Char[] { ';', ',', ' ', '@' })

,这样每个子字符串都会有您需要的字符串。

May be just add

ListOfUsers.Split(new Char[] { ';', ',', ' ', '@' })

so every sub-string will have the string you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文