㈠ java 如何在字元串查找最後字元的位置
import java.util.Scanner;
public class Test60023{
public static void main(String []args){
int index,i,n,j;
char ch;
String str;
Scanner in=new Scanner(System.in);
ch=(in.nextLine()).charAt(0);
n=in.nextInt();
in.nextLine();
for(i=1;i<=n;i++){
str=in.nextLine();
index=str.lastIndexOf((int)ch);
if(index==-1)
System.out.println("Not found");
else
System.out.println(index);
}
}
}
㈡ java 如何判斷一個字元在字元串中最後出現的位置
String n="";
n=n.subString(0,n.lastIndexOf("f"));
截取N中,第0個位置到最後一個f之前的內全部字元容
㈢ 正則表達式怎麼匹配字元串中最後一串數字
1、創建java類,TestRegexp
㈣ 正則表達式怎麼匹配字元串中最後一串數字
1、創建java類,TestRegexp
㈤ java提取最後一個字元,怎麼弄啊!急急急
先用lastIndexOf()得到最後字元的位置的『值』,然後用substring(『值』)提取
用法:
String s="Create a new class named Sentence.java. In the main method, write a program that reads a sentence using a dialog box. Depending on the last character of the sentence, output another dialog box identifying the sentence as declarative (ends with a period), interrogative (ends with a question mark), exclamatory (ends with an exclamation point), or other. Use a switch structure to accomplish this.「;
不知道你是要得到this還是最後的標點符號
如果是this:
int index=s.lastIndexOf("this");
String ss=s.substring(index,s.length()-1);
如果就是標點符號:
String ss=s.substring(s.length()-1);
ss就是你要的字元,純手打希望幫助你。
㈥ java中怎麼獲取指定字元串的最後一個字元
String ss = titleChoose2B;
char[] c = ss.toCharArray();
int length = c.length;
char b = c[length-1];
㈦ java中替換String中的最後一個字元
替換最後一個字元實現方式有兩種:
1:使用replace替換方法
String str="hello world";
str=str.replace(str.charAt(str.length-1)+"","新字元");
2:編寫代碼替換
String str="hello world";
char[] items=str.toCharArray();
itms[items.length-1]='新字元';
㈧ java 中lastIndexOf();是做什麼用的
是String類對象常用的方法,
主要用於字元串截取!
int java.lang.String.lastIndexOf(String str)
返回最右邊出現的指定子字元串在此字元串中的索引。
參數:要查找的字元
返回:最末尾一個要查找字元的索引
㈨ java中怎樣判斷字元串最後一個字元
publicclassTest{
publicstaticvoidmain(String[]args){
來//假設要判自斷的字元串str="qwer"
Stringstr="qwer";
//使用length()方法判斷這個字元串的長度
inti=str.length();
//使用String類的substring方法顯示最後一個字元
System.out.println(str.substring(i-1));
}
}
代碼實現如上所示(substring用法題主最好自行網路學習)
㈩ java中怎麼獲取指定字元串的最後一個字元
用String類的substring(int from,int to)方法去截字元串版位置為from到to-1位置的字元
substring(int index)方法去截字元串位置index-1及以後的所有權字元串,注意字元串的字元位置是從0開始的,substring(int from ,int to)方法是前閉後開的,即[from,to),可以理解為[from,to-1]
例:String name="helloworld";
System.out.println(name.substring(name.length()-1,name.length()));//輸出d
System.out.println(name.substring(name.length()-1));//輸出d