你好,这是问题。
检查s1是否具有前缀AAA并将结果分配给布尔变量b
检查s1是否具有前缀AAA并将结果分配给布尔变量b
这是我到目前为止所拥有的
/**
*
* @author samue_000
*/
public class N95e {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String s1 = "Welcome";
String s2 = "welcome";
boolean b = true;
s1.lastIndexOf("AAA");
if (s1.lastIndexOf("AAA") == true) {
}
System.out.println(s1.lastIndexOf("AAA"));
}
}
真的坚持这个,心灵已经空白了。所以帮助将不胜感激
答案 0 :(得分:0)
boolean isStartAAA = s1.startsWith("AAA");
boolean isEndAAA = s1.endsWith("AAA");
然后打印这两个值,您也可以使用indexOf()
实现此目的,但不必使用它。
答案 1 :(得分:0)
哦,我现在知道了
只做boolean b = s1.startsWith("AAA);
然后打印
答案 2 :(得分:0)
甚至更紧凑:
System.out.println(s1.startsWith("AAA")||s1.endsWith("AAA"));