Can a regular expressions be used to compare and match set of words?
For example, I want a string like this...
"loan nation"
to match on these...
"Loan Origination"
"international loans"
but not on these...
"home mortgage loan"
"Loan Application"
Based on your requirement I will suggest to use a custom function, say,
checkMatch(str)
that takes the string and return the boolean value for the match found or not found.