I have a collection of words stored in a List object say for example the title collection here
Lorem Ipsum
Centuries
Electronic
and this is sample paragraph where I want to look for this words
lorem ipsum is simply dummy text of the printing and typesetting industry. Loren Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing LorenIpsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of LoremIpsum.
My goal is, I want to extract those words in that paragraph, does not matter if it was misspelled because the goal was to correct the capitalization and misspelled words.
My expected result here is
lorem ipsum
Loren Ipsum
centuries
electornic
LorenIpsum
LoremIpsum
But not limited to these because this will run into the entire article and with hundrends of articles
sorry, I don't have any written code yet but I was planning to use RegEx for C# here.