连字符前分割字符串 – asp.net c#

前端之家收集整理的这篇文章主要介绍了连字符前分割字符串 – asp.net c#前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个字符串:
10989898 - test1

或者另一个例子:

123178239182 - test2

我需要像这样的输出

在第一种情况下:

10989898

在第二种情况:

123178239182

表示连字符前的值.我怎样才能做到这一点?

解决方法

string result = theString.Substring(0,theString.IndexOf("-")).Trim();
原文链接:https://www.f2er.com/aspnet/246962.html

猜你在找的asp.Net相关文章