I have to search for a string 1. Joyce Limited Company in a number of PDF files using Python. There this string can be present in any of the following formats. But how can I ensure string matching and identify the strings in the documents:
- "1. JoyceLimitedCompany"
- "1.JoyceLimitedCompany" Space can vary between words
- "1. Joyce Limited Company" Space can vary between words
- "1. joyce limited company" Case can vary
- "1 - joyce limited company" "instead of dot some other special character"
I am using Python for it but unable to figure out how to accomplish it. Any help will be appreciated.