Results 1 to 3 of 3
- 11-18-2012, 10:58 PM #1
Member
- Join Date
- Oct 2011
- Location
- Bogotá Colombia
- Posts
- 5
- Rep Power
- 0
Regular expression not accepted in Java
Hola,
I´m trying to compile the following Java RegEx expression:Saludos,
As you can see, it is very simple. In egrep (UNIX utility) it works correctly, and in Notepad++, too.Java Code:\<the +the\>
This is the code that I have wrote to test it:
ex12.backreferencing.txt file contents:Java Code:public class Backreferencing { public static void main( String[] args ) { try { BufferedReader br = new BufferedReader( new FileReader( "regex-files/ch01/ex12.backreferencing.txt" ) ); String currentLine = null; Pattern p = Pattern.compile( "\\<the +the\\>" ); while( ( currentLine = br.readLine() ) != null){ Matcher m = p.matcher(currentLine); while( m.find() ){ System.out.println( currentLine ); } } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
She likes to eat chocolate. But the the chocolate is not good in exceeds.
Some idea or suggestion?
Thanks in advance.
- 11-18-2012, 11:20 PM #2
Senior Member
- Join Date
- Oct 2010
- Location
- Germany
- Posts
- 780
- Rep Power
- 4
Re: Regular expression not accepted in Java
did you read Pattern (Java Platform SE 6) ?
There is no \< or \> (start and end of word) in java! for word boundaries in regex in java you can use \b -> "\\bthe +the\\b"
- 11-19-2012, 12:44 AM #3
Member
- Join Date
- Oct 2011
- Location
- Bogotá Colombia
- Posts
- 5
- Rep Power
- 0
Similar Threads
-
Java Help Regular Expression
By geforce in forum New To JavaReplies: 13Last Post: 01-28-2012, 08:29 AM -
URGENT HELP : Java Regular Expression
By asheshrocky in forum Advanced JavaReplies: 3Last Post: 12-07-2011, 02:52 PM -
Java regular expression optimization - help needed
By dpkcv in forum Advanced JavaReplies: 0Last Post: 09-30-2011, 08:42 AM -
Java Regular expression ?
By sidharth in forum Advanced JavaReplies: 12Last Post: 11-14-2009, 11:09 AM -
Java Regular Expression help
By royalibrahim in forum Advanced JavaReplies: 11Last Post: 11-12-2009, 01:27 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks