我有一字串
其可能为
1234|3333223|martktip--->martktip
1234|3333223|martddkdddtip--->martddkdddtip
2334.3434|343|34555|appltip33--->appltip33
简单来说,就是取得最后一个 | 后面的字串
请问如何实现呢?
我有一字串
其可能为
1234|3333223|martktip--->martktip
1234|3333223|martddkdddtip--->martddkdddtip
2334.3434|343|34555|appltip33--->appltip33
简单来说,就是取得最后一个 | 后面的字串
请问如何实现呢?
dim s as string = "1234|3333223|martktip"
dim s1 as string = split(s, "|")( split(s, "|").Count() - 1)