Search tool that uses a grammar rather than regular expression?
Posted
by Tom Hubbard
on Stack Overflow
See other posts from Stack Overflow
or by Tom Hubbard
Published on 2010-03-02T11:44:19Z
Indexed on
2010/05/14
17:04 UTC
Read the original article
Hit count: 175
Are there any search tools that allow you to set up a simple token/grammar parsing system that work similar to regular expressions?
What we want to do is search our ColdFusion code for queries that do not have cfqueryparams in them.
A regular expression gets a bit tough in this situation because I can't keep track of the start tags while looking for something else before getting an end tag.
It seems like a parsing system would work more accurately.
© Stack Overflow or respective owner