Thread: Boost
View Single Post
Posts: 726 | Thanked: 345 times | Joined on Apr 2010 @ Sweden
#2
If you can't find a pre-compiled version of boost using the package manager of your choice, you can always download the source code and compile it yourself:
http://sourceforge.net/projects/boos.../boost/1.46.1/

If you're only going to do simple matching, with stable patterns, writing your own matcher isn't extremely hard.

The result is a state machine that do transitions using the next character in the string you're matching against.