わかりました、例を挙げましょう:
String parentString = "HelloThisIsAString";
int stringPos = parentString.indexOf("String"); //Will return the position of the text "String" of the parentString.
String string = //Here the problem arises.
Pythonでは、次のようにします:
string = parentString[stringPos:#to some certain text]
Javaでそれを行う方法。