lets say I have a long string str_1:
**str_1** : 'Computer once meant a person who did computations, but now the term almost universally refers to automated electronic machinery. The first section of this article focuses on modern digital electronic computers and their design'
and I have a string str_2 to look for in the long string:
**str_2** : 'The second section of this article focuses on modern digital electronic computers and their design'
The str_2 actually exist in the str_1 but the word 'second' in str_2 is written as 'first' in str_1 the only difference is this.
What I want is to search a sentence in a string with some errors. I want to find the str with some percentage of errors then I will check the mistakes. Is there a way to do this. Thank you.