I like Jakarta Commons Lang StringUtils :
String x = StringUtils.substringBetween(string, "/resources/pages/", ".xhtml");
Or, if ".xhtml"it can also be displayed in the middle of the line:
String x = substringBeforeLast(
substringAfter(string, "/resources/pages/"), ".xhtml");
(I also like static imports)
source
share