Hi all,
Please let me know the regular expression patterns for SSN, US Phone number which works on FTK2.2 !
For SSN i tried expressions like \<\d\d\d[\- ]\d\d[\- ]\d\d\d\d\> which did not work (
But [0-9]{3}-[0-9]{2}-[0-9]{4} works… plz let me know if there are any other efficient ways to do pattern searching.
Thanks in advance
Sudha
Try this
^\d{3}-\d{2}-\d{4}$
http//
Have you tried the predefined regular expression in FTK?
jhup wrote
^\d{3}-\d{2}-\d{4}$
I will try this and let you know. D
BitHead wrote
Have you tried the predefined regular expression in FTK?
I'm not aware of predefined expressions please elaborate on this. ?
Thanks in advance
Sudha
If you proceed to the live search tab then click on the "pattern" tab to the right of the text input area you will see two arrows " > >" one is black the other is not filled. The black arrow allows you to create your own and gives you an explanation of each expression, the unfilled arrow has numerous pre defined expressions already.
Also on the access data web site in the knowledge base there is various examples for all different types of Regular Expression searches
http//
pronie2121 wrote
If you proceed to the live search tab then click on the "pattern" tab to the right of the text input area you will see two arrows " > >" one is black the other is not filled. The black arrow allows you to create your own and gives you an explanation of each expression, the unfilled arrow has numerous pre defined expressions already.Also on the access data web site in the knowledge base there is various examples for all different types of Regular Expression searches
accessdata.com/regex.html
Thanks a lot…. D
It really helped me to solve many things )
Thanks again
Sudha