รหัสต่อไปนี้จะพิมพ์ 2
String word = "bannanas";
String guess = "n";
int index;
System.out.println(
index = word.indexOf(guess)
);
ฉันต้องการทราบวิธีรับดัชนีทั้งหมดของ "n" ("guess") ในสตริง "bannanas"
ผลลัพธ์ที่คาดหวังคือ: [2,3,5]
รหัสต่อไปนี้จะพิมพ์ 2
String word = "bannanas";
String guess = "n";
int index;
System.out.println(
index = word.indexOf(guess)
);
ฉันต้องการทราบวิธีรับดัชนีทั้งหมดของ "n" ("guess") ในสตริง "bannanas"
ผลลัพธ์ที่คาดหวังคือ: [2,3,5]
คำตอบ:
นี้ควรพิมพ์รายชื่อของตำแหน่งโดยไม่มี-1
ที่สิ้นสุดว่าวิธีการแก้ปัญหาของปีเตอร์ Lawrey ได้มี
int index = word.indexOf(guess);
while (index >= 0) {
System.out.println(index);
index = word.indexOf(guess, index + 1);
}
นอกจากนี้ยังสามารถทำได้เป็นfor
ลูป:
for (int index = word.indexOf(guess);
index >= 0;
index = word.indexOf(guess, index + 1))
{
System.out.println(index);
}
[หมายเหตุ: หากguess
สามารถยาวเกินอักขระเดี่ยวก็เป็นไปได้โดยการวิเคราะห์guess
สตริงเพื่อให้วนซ้ำword
เร็วกว่าลูปด้านบน มาตรฐานสำหรับวิธีการดังกล่าวเป็นขั้นตอนวิธีการบอยเยอร์มัวร์ อย่างไรก็ตามเงื่อนไขที่ชอบใช้แนวทางดังกล่าวดูเหมือนจะไม่มีอยู่]
ลองทำดังต่อไปนี้ (ซึ่งไม่ได้พิมพ์ -1 ต่อท้าย!)
int index = word.indexOf(guess);
while(index >= 0) {
System.out.println(index);
index = word.indexOf(guess, index+1);
}
indexOf
ส่งกลับค่า -1 เมื่อไม่พบอักขระ
-1
ในตอนท้ายก็คือdo
ห่วงรันร่างกายและแล้วพบว่าในการยุติindex == -1
while
String string = "bannanas";
ArrayList<Integer> list = new ArrayList<Integer>();
char character = 'n';
for(int i = 0; i < string.length(); i++){
if(string.charAt(i) == character){
list.add(i);
}
}
ผลลัพธ์จะใช้ในลักษณะนี้:
for(Integer i : list){
System.out.println(i);
}
หรือเป็นอาร์เรย์:
list.toArray();
ด้วย Java9 เราสามารถใช้ประโยชน์จากสิ่งiterate(int seed, IntPredicate hasNext,IntUnaryOperator next)
ต่อไปนี้: -
List<Integer> indexes = IntStream
.iterate(word.indexOf(c), index -> index >= 0, index -> word.indexOf(c, index + 1))
.boxed()
.collect(Collectors.toList());
System.out.printlnt(indexes);
สิ่งนี้สามารถทำได้ในรูปแบบการทำงานกับ Java 9 โดยใช้นิพจน์ทั่วไป:
Pattern.compile(Pattern.quote(guess)) // sanitize input and create pattern
.matcher(word) // create matcher
.results() // get the MatchResults, Java 9 method
.map(MatchResult::start) // get the first index
.collect(Collectors.toList()) // collect found indices into a list
);
นี่คือ Kotlin Solution เพื่อเพิ่มตรรกะนี้เป็นวิธีการใหม่ในCharSequence
API โดยใช้วิธีการขยาย:
// Extension method
fun CharSequence.indicesOf(input: String): List<Int> =
Regex(Pattern.quote(input)) // build regex
.findAll(this) // get the matches
.map { it.range.first } // get the index
.toCollection(mutableListOf()) // collect the result as list
// call the methods as
"Banana".indicesOf("a") // [1, 3, 5]
int index = -1;
while((index = text.indexOf("on", index + 1)) >= 0) {
LOG.d("index=" + index);
}
String word = "bannanas";
String guess = "n";
String temp = word;
while(temp.indexOf(guess) != -1) {
int index = temp.indexOf(guess);
System.out.println(index);
temp = temp.substring(index + 1);
}
word.substring(word)
จะไม่รวบรวม : P
String input = "GATATATGCG";
String substring = "G";
String temp = input;
String indexOF ="";
int tempIntex=1;
while(temp.indexOf(substring) != -1)
{
int index = temp.indexOf(substring);
indexOF +=(index+tempIntex)+" ";
tempIntex+=(index+1);
temp = temp.substring(index + 1);
}
Log.e("indexOf ","" + indexOF);
นอกจากนี้หากคุณต้องการค้นหาดัชนีทั้งหมดของสตริงในสตริง
int index = word.indexOf(guess);
while (index >= 0) {
System.out.println(index);
index = word.indexOf(guess, index + guess.length());
}
guess
เป็น"aba"
และword
เป็นอยู่"ababa"
จะไม่ชัดเจนว่าguess
เกิดขึ้นครั้งหรือสองครั้งในword
. (ฉันหมายถึงเป็นที่ชัดเจนว่าเราสามารถพบการguess
เริ่มต้นที่ตำแหน่งที่แตกต่างกันสองตำแหน่ง แต่เนื่องจากเหตุการณ์ที่เกิดขึ้นทับซ้อนกันจึงไม่ชัดเจนว่าควรนับทั้งคู่หรือไม่) คำตอบนี้ใช้มุมมองที่ว่าเหตุการณ์ที่ทับซ้อนกันจะไม่ถูกนับว่าแตกต่างกัน แน่นอนเนื่องจากคำพูดของ OP แนะนำอย่างยิ่งว่าguess
จะมีความยาว 1 เสมอความคลุมเครือจึงไม่เกิดขึ้น
ฉันมีปัญหานี้เช่นกันจนกระทั่งฉันคิดวิธีนี้ขึ้นมา
public static int[] indexesOf(String s, String flag) {
int flagLen = flag.length();
String current = s;
int[] res = new int[s.length()];
int count = 0;
int base = 0;
while(current.contains(flag)) {
int index = current.indexOf(flag);
res[count] = index + base;
base += index + flagLen;
current = current.substring(current.indexOf(flag) + flagLen, current.length());
++ count;
}
return Arrays.copyOf(res, count);
}
วิธีนี้สามารถใช้เพื่อค้นหาดัชนีของแฟล็กที่มีความยาวเท่าใดก็ได้ในสตริงตัวอย่างเช่น:
public class Main {
public static void main(String[] args) {
int[] indexes = indexesOf("Hello, yellow jello", "ll");
// Prints [2, 9, 16]
System.out.println(Arrays.toString(indexes));
}
public static int[] indexesOf(String s, String flag) {
int flagLen = flag.length();
String current = s;
int[] res = new int[s.length()];
int count = 0;
int base = 0;
while(current.contains(flag)) {
int index = current.indexOf(flag);
res[count] = index + base;
base += index + flagLen;
current = current.substring(current.indexOf(flag) + flagLen, current.length());
++ count;
}
return Arrays.copyOf(res, count);
}
}
คลาสสำหรับการแยกสตริงที่ฉันคิดขึ้นมา มีการทดสอบสั้น ๆ ในตอนท้าย
SplitStringUtils.smartSplitToShorterStrings(String str, int maxLen, int maxParts)
จะแบ่งด้วยช่องว่างโดยไม่ทำลายคำถ้าเป็นไปได้และหากไม่เป็นเช่นนั้นจะแบ่งตามดัชนีตาม maxLen
วิธีการอื่น ๆ ที่มีไว้เพื่อควบคุมวิธีการแยก: bruteSplitLimit(String str, int maxLen, int maxParts)
, spaceSplit(String str, int maxLen, int maxParts)
.
public class SplitStringUtils {
public static String[] smartSplitToShorterStrings(String str, int maxLen, int maxParts) {
if (str.length() <= maxLen) {
return new String[] {str};
}
if (str.length() > maxLen*maxParts) {
return bruteSplitLimit(str, maxLen, maxParts);
}
String[] res = spaceSplit(str, maxLen, maxParts);
if (res != null) {
return res;
}
return bruteSplitLimit(str, maxLen, maxParts);
}
public static String[] bruteSplitLimit(String str, int maxLen, int maxParts) {
String[] bruteArr = bruteSplit(str, maxLen);
String[] ret = Arrays.stream(bruteArr)
.limit(maxParts)
.collect(Collectors.toList())
.toArray(new String[maxParts]);
return ret;
}
public static String[] bruteSplit(String name, int maxLen) {
List<String> res = new ArrayList<>();
int start =0;
int end = maxLen;
while (end <= name.length()) {
String substr = name.substring(start, end);
res.add(substr);
start = end;
end +=maxLen;
}
String substr = name.substring(start, name.length());
res.add(substr);
return res.toArray(new String[res.size()]);
}
public static String[] spaceSplit(String str, int maxLen, int maxParts) {
List<Integer> spaceIndexes = findSplitPoints(str, ' ');
List<Integer> goodSplitIndexes = new ArrayList<>();
int goodIndex = -1;
int curPartMax = maxLen;
for (int i=0; i< spaceIndexes.size(); i++) {
int idx = spaceIndexes.get(i);
if (idx < curPartMax) {
goodIndex = idx;
} else {
goodSplitIndexes.add(goodIndex+1);
curPartMax = goodIndex+1+maxLen;
}
}
if (goodSplitIndexes.get(goodSplitIndexes.size()-1) != str.length()) {
goodSplitIndexes.add(str.length());
}
if (goodSplitIndexes.size()<=maxParts) {
List<String> res = new ArrayList<>();
int start = 0;
for (int i=0; i<goodSplitIndexes.size(); i++) {
int end = goodSplitIndexes.get(i);
if (end-start > maxLen) {
return null;
}
res.add(str.substring(start, end));
start = end;
}
return res.toArray(new String[res.size()]);
}
return null;
}
private static List<Integer> findSplitPoints(String str, char c) {
List<Integer> list = new ArrayList<Integer>();
for (int i = 0; i < str.length(); i++) {
if (str.charAt(i) == c) {
list.add(i);
}
}
list.add(str.length());
return list;
}
}
รหัสทดสอบง่ายๆ:
public static void main(String[] args) {
String [] testStrings = {
"123",
"123 123 123 1123 123 123 123 123 123 123",
"123 54123 5123 513 54w567 3567 e56 73w45 63 567356 735687 4678 4678 u4678 u4678 56rt64w5 6546345",
"1345678934576235784620957029356723578946",
"12764444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444",
"3463356 35673567567 3567 35 3567 35 675 653 673567 777777777777777777777777777777777777777777777777777777777777777777"
};
int max = 35;
int maxparts = 2;
for (String str : testStrings) {
System.out.println("TEST\n |"+str+"|");
printSplitDetails(max, maxparts);
String[] res = smartSplitToShorterStrings(str, max, maxparts);
for (int i=0; i< res.length;i++) {
System.out.println(" "+i+": "+res[i]);
}
System.out.println("===========================================================================================================================================================");
}
}
static void printSplitDetails(int max, int maxparts) {
System.out.print(" X: ");
for (int i=0; i<max*maxparts; i++) {
if (i%max == 0) {
System.out.print("|");
} else {
System.out.print("-");
}
}
System.out.println();
}
นี่คือโซลูชัน java 8
public int[] solution (String s, String subString){
int initialIndex = s.indexOf(subString);
List<Integer> indexList = new ArrayList<>();
while (initialIndex >=0){
indexList.add(initialIndex);
initialIndex = s.indexOf(subString, initialIndex+1);
}
int [] intA = indexList.stream().mapToInt(i->i).toArray();
return intA;
}
สามารถทำได้โดยการวนซ้ำmyString
และเปลี่ยนfromIndex
พารามิเตอร์ในindexOf()
:
int currentIndex = 0;
while (
myString.indexOf(
mySubstring,
currentIndex) >= 0) {
System.out.println(currentIndex);
currentIndex++;
}
mySubstring
โดยไม่คำนึงว่าmySubstring
จะพบได้ในแต่ละตำแหน่งหรือไม่ ไม่ใช่สิ่งที่ OP ต้องการ ..
ลองทำตามนี้
String str = "helloslkhellodjladfjhello";
String findStr = "hello";
System.out.println(StringUtils.countMatches(str, findStr));