前缀判断
如下的代码判断 needle_start指向的串是否为haystack_start指向的串的前缀,如不是,则返回NULL。
比如:"abcd1234" 就包含了 "abc" 为前缀
如下的代码判断 needle_start指向的串是否为haystack_start指向的串的前缀,如不是,则返回NULL。
比如:"abcd1234" 就包含了 "abc" 为前缀
import java.util.*;public class Main{public static void main(String[] args) {Scanner sc = new Scanner(System.in);String needle_start = sc.nextLine();String haystack_start = sc.nextLine();if (haystack_start.startsWith(needle_start.substring(0,needle_start.length()))){System.out.println(" needle_start指向的串为haystack_start指向的串的前缀");}else{System.out.println("NULL");}
// && haystack_start.endsWith(needle_start.substring(needle_start
// .length() - 3)))
// ;//判断后三位}
}
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
str=str.substring(int beginIndex,int endIndex);截取str中从beginIndex开始至endIndex结束时的字符串,并将其赋值给str;