Got more questions? Find advice on: ASP | SQL | XML | Windows
in Search
Welcome to RegexAdvice Sign in | Join | Help

Browse by Tags

All Tags » ssn
  • Re: Excluding SSN like numbers in http URL's

    Good news, that worked in the RegexBuddy editor.  I will try it out in the vendor tool and let you know if it worked there as well.  Thanks again for your help!
    Posted to Construction Advice (Forum) by Pete on May 22, 2009
  • Re: Excluding SSN like numbers in http URL's

    Thanks for your reply.  Right now I am testing out my regex using RegexBuddy.  The regex actually runs in a third party tool that scans emails.  Is that enough detail to go on?  I know the tool supports lookaheads, but I am not sure about lookbehinds.  If a possible solution is to use lookbehinds, I can ask the vendor if ...
    Posted to Construction Advice (Forum) by Pete on May 22, 2009
  • Excluding SSN like numbers in http URL's

    I have been using a regular expression to search for SSN's in emails with pretty good success.  The only issue is that this expression can not exclude SS "like" numbers in URL strings. Here is the regex I am using: \b(?!000)(?!588)(?!666)(?!69[1-9])(?!73[4-9]|7[4-5]\d|76[0123])([0-6]\d{2}|7([0-6]\d|7[012]))([ ...
    Posted to Construction Advice (Forum) by Pete on May 22, 2009
  • Finding SSN's with PCRE

    I'm trying to write a perl compatible regular expression that meets the following criteria for a social security number: - matches NNN-NN-NNN - no number group can start with 000, such as 000-NN-NNN, NNN-00-NNNN, NNN-NN-0000 - the area group isn't higher than 772 My pcre ...
    Posted to Construction Advice (Forum) by RickW on October 9, 2006