I'm new to using Regex, I've been going through a rake of tutorials but I haven't found one that applies to what i want to do,
I want to search for something, but return everything following it but not the search string itself
eg "Some lame sentence that is awesome"
search for "sentence"
return "that is awesome"
Any help would be much appriciated
This is my regex so far
sentence(.*)
but it returns: sentence that is awesome
Pattern pattern = Pattern.compile("sentance(.*)");
Matcher matcher = pattern.matcher("some lame sentance that is aweomse");
boolean found = false;
while (matcher.find())
{
System.out.println("I found the text: " + matcher.group().toString());
found = true;
}
if (!found)
{
System.out.println("I didn't found the text");
}
Matcher? – Grzegorz Oledzki Feb 15 '11 at 16:55System.out.println("I found the text: " + "some lame sentance that is aweomse".substring(end()));– Nishant Feb 15 '11 at 17:09