(Elementary user)
I would like to use two regular expression to find certain PDFs:
1) PDF files that begin with a 'P'
2) PDF files that only have numbers in the file name
Here are examples of some of my files:
Picture_001.pdf
Plans_001.pdf
1234567890.pdf
9987654432.pdf
Would the regular expressions be:
1) .P.*pdf
2) ^\d+$.pdf
Best regards
I would like to use two regular expression to find certain PDFs:
1) PDF files that begin with a 'P'
2) PDF files that only have numbers in the file name
Here are examples of some of my files:
Picture_001.pdf
Plans_001.pdf
1234567890.pdf
9987654432.pdf
Would the regular expressions be:
1) .P.*pdf
2) ^\d+$.pdf
Best regards