来自字符串列表的子串

时间:2014-05-05 15:31:28

标签: vb.net string function substring

我有字符串:

string1 = Janko||A12 string2 = VHS No||RY3 string3 = No St bond||40p

我想总是得到字符||后的最后3位数字。我该怎么做?

1 个答案:

答案 0 :(得分:0)

你可以这样做:

string s1 = "string||23";
var value = s1.Substring(s1.IndexOf("||")+2);

Demo