|
I am programmatically searching source for variable names and this regex
eliminates anything with a valid variable name char before or after the
variable. For example, if I am searching for ACCT, this would eliminate
ACCT01 or EXPACCT but not ACCT, or ACCT)
Will this work?
(?:\s+)ACCT(?:[^\w_@#\$]+)
It is my understanding that I need to compile the expression into a pattern
and then use that pattern to compare to my string. However, as you can see
from the original above, there is a variable value in the middle of my
expression.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.