| Author |
Java Regex
|
Vincent Tomas
Greenhorn
Joined: Jan 16, 2007
Posts: 15
|
|
Hello everyone, I am new at regex and I have read several tutorials but I still can't find my answer, which is, is there a way to parse using 2 different patterns? For example, Sorry for being vague. To explain it in sentences, I am parsing source (.*cpp) files and I am trying to find the following: Sounds easy, however, some source files have it like the following: Is there anyway that I could search on two patterns? Thank you for any help.
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16687
|
|
You can build a pattern from 2 patterns using the logical OR operator. X|Y means match either X or Y, and if you use groups... "(some regular expression)|(another regular expression)" will match either expression. Henry
|
Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
|
 |
Vincent Tomas
Greenhorn
Joined: Jan 16, 2007
Posts: 15
|
|
My gosh. How did I missed that? Thanks Henry!
|
 |
 |
|
|
subject: Java Regex
|
|
|