I'm searching for a way to find some specific patterens in text. For example if I would like to find all references from a text in format like this:
- Baron, Naomi (2000) Alphabet to Email: How Written English Evolved and Where It's Heading, Routledge: London and New York.
So anything similar to this would be returned from input text. Is there any algorithm that is good with this. All I found so far was algorithm for searching similar strings in text.
I was thinking about using regular expressions, but I don't know if it is the best way to do it, because I would need something that would calculate some index of similarity and would then return hits that have best score.