请让我知道如何删除感叹号之前的单词。
意味着例如如果 Sring 是
BIM!A , i need only A
SAM!B , i need only B
SNNJ!D , I need only D
请让我知道如何删除感叹号之前的单词。
意味着例如如果 Sring 是
BIM!A , i need only A
SAM!B , i need only B
SNNJ!D , I need only D
System.out.println(str.substring(s.lastIndexOf("!") + 1));
这将打印出现在最后一个感叹号之后的字符串部分。如果没有“!”,则打印整个字符串 在那儿
System.out.println(s.substring(s.indexOf("!") + 1));
您可以在 with 内进行String
搜索
Strings s = "ABD!A";
//This gives you the index of the first !
int i = s.indexOf('!');
//now you can Substring
String after = s.substring(i+1);