Does anyone use have a good regex library that they like to use? Most of the regexes that you find online either contain bugs or are so focused on the edge cases that it turns into a competition to validate whatever spec 100%. Of course you can write your own, but when you are billing by the hour its handy to have a library around.
|
|
You can search for regular expression in regexlib. |
||
|
|
|
|
Boost, for c++ |
||
|
|
|
|
Besides being pretty much the best Regex tool on the market (seriously), RegexBuddy is about the only tool I know of that lets you switch amongst different Regex rendering engines. See info here: http://en.wikipedia.org/wiki/RegexBuddy
|
||
|
|
|
|
Lately, I do all my text parsing in Perl. If I needed regex's in another language, I'd go with PCRE.
PCRE is mature, and has the support of numerous projects. Apache and Apple both have a vested interest in making it high-quality. I doubt that any other RE library is likely to surpass it in both functionality and quality (or possibly either) anytime soon. |
|||
|
|
|
|
This question is too vague. What platform/language are you referring to? Are you also asking for a regex editor/tool as some of the other responses lead? |
||
|
|
|
|
Regex is commonly pocket code. What language are you wanting it in? Would you be interesting in contributing to a say google code project that has a standard set of regex's in a few different languages? |
||
|
|
|
|
e-texteditor hilights what you're searching for as you type it. This is incredibly useful, as you can paste your 'sample text' into a file, and just type your regex into the search field, and see what it's matching right in front of you. None of these 'visual regex builder' things are substitutes for actually LEARNING regular expressions. |
||
|
|
