I want to automate a script in Excel VBA and I am stuck.
I have a string = "The patient population is x. From this, a lot of patients are males. A particular male patint has 3 deadly diseases." (the strings will be longer)
Now what i want to do is search how many times the word "patient" appears in this string even if the words have spell problems and how are they written.
My ideea was to let`s say match with a confidence of 80% the word "patient" with all the words in the string and the result i am aiming for is .. there are 3 matches and the words that are in the string :"patient","patients","patint ". Is there a way to do this?