top of page

Don't miss how easy it is to escape backward slashes when running a regular expression search.



Simply use two backslashes in a row, since a backslash is used to escape other characters used in the Regex syntax.



You can use this long regular expression (posted here by Niket Pathak):


((?!219-09-9999|078-05-1120)(?!666|000|9\d{2})\d{3}-(?!00)\d{2}-(?!0{4})\d{4})|((?!219 09 9999|078 05 1120)(?!666|000|9\d{2})\d{3} (?!00)\d{2} (?!0{4})\d{4})|((?!219099999|078051120)(?!666|000|9\d{2})\d{3}(?!00)\d{2}(?!0{4})\d{4})$


. . . to successfully find social security numbers in a text sample. Take off the caret ^ so that you can find SSNs which don't start at the beginning of a new line.





As always, tested and confirmed to work tonight.



You can use this regular expression search to find file names with a three character extension:


^[\w,\s-]+\.[A-Za-z]{3}$




Change the number indicated in curly brackets at the end to account for longer extensions.


^[\w,\s-]+\.[A-Za-z]{4}$






Sean O'Shea has more than 20 years of experience in the litigation support field with major law firms in New York and San Francisco.   He is an ACEDS Certified eDiscovery Specialist and a Relativity Certified Administrator.

The views expressed in this blog are those of the owner and do not reflect the views or opinions of the owner’s employer.

If you have a question or comment about this blog, please make a submission using the form to the right. 

Your details were sent successfully!

© 2015 by Sean O'Shea . Proudly created with Wix.com

bottom of page