所有情况都需要使用子串函数?

时间:2014-05-18 06:43:10

标签: c# regex c#-3.0

我的客户编号为CUS/ABC/15

为此我使用substring喜欢

string newNo = "CUSTNO"+custobj.CustomerNumber.Substring(custobj.CustomerNumber.LastIndexOf("/") + 1, 2);

输出CUSTNO15

但我想使用substring作为默认方法。 例如

如果我的客户编号是CUST/AB/62

现在要取出62 我需要修改子串,如下所示

CUSTNO"+custobj.CustomerNumber.Substring(custobj.CustomerNumber.LastIndexOf("/"));

如何将其设为默认值而不管customer number

1 个答案:

答案 0 :(得分:1)

您可以使用Split方法。

var num = text.Split('/')[2];

如果您要求提供其他信息,请提供更多信息