Hi,
here i just try to delete the content in text file between S and e letter.
but i don't know to write the ReplaceAll() methode after this
String[] paras = Pattern.compile("^(S)(.*)(e)$").split(inputText);
How could i use ReplaceAll() here?
Thank you