我所拥有的是一个包含特殊字符、字符和整数的字符串,我想要做的是,做类似的事情,如下所述:
假设我有类似Radiobutton_12
. 我想删除“_”之前的所有字符。那作为:
var s = Radiobutton_12
s = s. Substring (s. indexOf ("_") +1);
Same as I can remove character after all that. But what scenario demands is:
radiobutton1_1, radiobutton2_1, radiobutton3_1
What if I want to keep, 1 1, 2 1, 3 1
我不明白。希望任何人都可以帮助我。