package com.hanqi.lianxi; import java.util.Scanner; public class startWith { //自己写一个与startWith类似的判断方法 public static void main(String[] args) { //首先随便定义一个字符串如下 String str = "fghkldrt"; //提示我们自己输入一个字符串,用来判断输入的字符串是不是刚刚定义的字符串的开头 Scanner sc = new Scanner(System.in); System.out.println("请输入您认为的字符串开头"); String a =sc.nextLine(); //通过indexOf来判断我们输入的字符串的索引号是否为0,若为0,则是开头,否则不是。 int s =str.indexOf(a); if(s==0) { System.out.println("您输入的是字符串str的开头"); } else { System.out.println("您输入的不是字符串str的开头"); } } }
时间: 2024-10-13 09:39:50