Regular Expressions in Java
I need a regular expression that should recognize the following text or anyother with a same format.
e.g. [C A_Thinking] my name is Suleman. [Hello] Who are you by the way. [Bye].
In the above text example i want that the pattern should match first *my name is Suleman* and in the second iteration *Who are you by the way.*. This could be one example, matched text strings could be any english sentence. The pattern should skip *[C A_Thinking]* and *[Bye].*. Remember there is a space in between *[C A_Thinking]* (C and A_Thinking).
I'm using Pattern and Matcher classes from java's R.E package.
Looking forward to ur reply.
Regards Suleman.

