ここでは、一致する最初の 15 文字をキャッチするために正規表現を使用しています。部分文字列を使用している間は (0,matcher.start()) のみを使用する必要があり、15 文字のみを取得する必要があります。親切に助けてください。
String test = "hello world this is example";
Pattern p = Pattern.compile(".{15}");
//can't change the code below
//can only make changes to pattern
Matcher m=p.matches(test);
matcher.find(){
String string = test.substring(0, m.start());
}
//here it is escaping the first 15 characters but I need them
//the m.start() here is giving 0 but it should give 15