關於在字串中查詢某乙個字元的位置的方法

2021-09-08 19:31:32 字數 412 閱讀 1797

一:準備

在程式的開始,我們可以確定使用一些知識點:

indexof,lastindexof,stringbuilder。

二:程式

public class indexofdemo {

三:結果展示

四:程式的構建技巧

1.使用容器來儲存位置,比陣列固定個數來確定位置節省空間使用

2.for迴圈結束的條件同樣可以減小開銷,在程式for之前,可以通過lastindexof來確定最後乙個字元出現的位置,當for迴圈時,到這裡就可以停止。

3.而停止更可以使用posi來判斷,而不是for裡面的i來停止

在乙個字串中尋找另外乙個字串

在乙個字串中尋找另外乙個字串 public class text foundit true break test system.out.println foundit?found it didn t find it 該段程式有點難以理解,主要就是if語句的理解,if searchme.charat ...

在乙個字串中查詢另外乙個字串的全排列出現位置

1 在乙個字串中查詢另外乙個字串任意的全排列出現位置。例如 a abcfsfcba b abc 則返回。the des s character must be adjacent public static list integer getindex string res,string des has...

判斷乙個字串是否在另乙個字串中

方法一 string str1 nihaoksdoksad string str2 ok int total 0 for string tmp str1 tmp null tmp.length str2.length tmp tmp.substring 1 system.out.println st...