I'm currently working on a UIMA based project, and the data set I am using has some predefined plain-text annotations that I am trying to convert into UIMA annotations using the Matcher utility.

My problem is that the annotations are in the format [ANNO] [/ANNO], and I have no idea how to write '[' or ']' as a regular expression.

I tried searching various places, and couldn't find an answer to this, closest I could find is to use either the octal or hexidecimal value rendition, but I then can't actually find said rendition for the character.

Cheers

link|improve this question
6  
Escape them with \ – Dervall Feb 24 at 11:32
So in a regex pattern, would that be '\\'? Because Eclipse keeps telling me I can't escape them. EDIT: OK, got the answer, Thanks a million and cheers! This was causing me to start tearing my hair out! – rp.kelly Feb 24 at 11:34
feedback

1 Answer

up vote 3 down vote accepted

As Dervall said, you must escape them:

Pattern pattern = pattern.compile("\\[");
Matcher matcher = pattern.matcher("string to match against");
link|improve this answer
Thanks a million, guys! – rp.kelly Feb 24 at 11:37
1  
@rp.kelly You should probably accept the answer by pressing big button on the left. – Max Feb 24 at 11:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.