C# 中字符串中最后一个逗号之前的所有元素
如何获取 C# 字符串中逗号(,)之前的所有元素? 例如 如果我的字符串是这样的
string s = "a,b,c,d";
,那么我想要在最后一个逗号之前的所有元素。所以我的新字符串看起来像是
string new_string = "a,b,c";
我尝试过拆分,但这样我一次只能使用一个特定元素。
How can i get all elements before comma(,) in a string in c#?
For e.g.
if my string is say
string s = "a,b,c,d";
then I want all the element before d i.e. before the last comma.So my new string shout look like
string new_string = "a,b,c";
I have tried split but with that i can only one particular element at a time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您想要最后出现之前的所有内容,请使用:
If you want everything before the last occurrence, use:
使用以下正则表达式:
"(.*),"
Use the follwoing regex:
"(.*),"
您还可以尝试:
You can also try: