導航:首頁 > 編程語言 > java匹配最後一次出現的字元

java匹配最後一次出現的字元

發布時間:2023-01-22 11:16:57

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

閱讀全文

與java匹配最後一次出現的字元相關的資料

熱點內容
如何找編程類的工作 瀏覽:286
jsp從mysql讀取時間 瀏覽:680
有什麼app可以存app 瀏覽:603
游戲編程從哪裡學的 瀏覽:738
win8文件布局 瀏覽:308
數據存儲參數配置文件 瀏覽:122
面膜去哪個網站買好 瀏覽:627
天下游舊版本 瀏覽:622
iphone6按鍵震動 瀏覽:528
u盤沒有顯示怎麼打開文件夾 瀏覽:13
win7升級win10激活失敗 瀏覽:914
win10系統文件缺失介質修復 瀏覽:900
怎麼樣系統升級 瀏覽:518
魔客吧傳奇網站模板 瀏覽:365
一段代碼解決html多瀏覽器兼容 瀏覽:803
淘車大師app官方下載 瀏覽:953
win10系統怎麼能找回桌面文件 瀏覽:423
換主板怎麼裝驅動程序 瀏覽:563
宜搜小說舊版本 瀏覽:310
win10凈網大師 瀏覽:262

友情鏈接