我的客户编号为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
?
答案 0 :(得分:1)
您可以使用Split
方法。
var num = text.Split('/')[2];
如果您要求提供其他信息,请提供更多信息