Problem 2. Count Substring Occurrences - Java - Text Processing and Regex API
import jdk.nashorn.internal.runtime.regexp.joni.Regex;
import java.util.Arrays;
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by User on 5.4.2016 г..
*/
public class Pr2_Count {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String text = scanner.nextLine().toLowerCase();
String word = scanner.nextLine().toLowerCase();
int counter = 0;
Pattern pattern = Pattern.compile(word);
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
counter++;
}
System.out.println(counter);
}
}
Здравейте имам следния проблем със задача 2 от домашното по Джава "Text Processing and Regex API"
Write a program to find how many times given string appears in given text as substring. The text is given at the first input line. The search string is given at the second input line. The output is an integer number. Please ignore the character casing.
Това е условието. Ясно ми е защо не ми се получава, a именоо защото, след като намери групата то продължава със стринга без да взима следващите букви като така губя възможности. Знам какъв е но нямам представа как да го оправя. Много ще се радвам ако ми помогнете. :))
Аз трета съм я направила по следния начин -
Scanner scan = new Scanner(System.in);
String input = scan.nextLine().toLowerCase();
String command = scan.nextLine().toLowerCase();
String[] integers = input.split("\\W+");
int count = 0;
for (int i = 0; i < integers.length; i++) {
if (integers[i].equals(command)){
count++;
}
}
System.out.println(count);
}