10-14-2024 01:49 PM
Hello,
LabVIEW has some tool to do this filter?
Find the closest phrases like a fuzzy logic
10-15-2024 06:04 AM
It depends on the goal of the comparison. Some algorithms are complex and require a word/phrase database. Much simpler, but not optimal for phrases, is the Levenshtein distance or the Dice-Sørensen coefficient. A diff algorithm such as the O(ND) difference algorithm might also be sufficient.
10-15-2024 09:57 AM
Have you looked at regular expressions ? With -match for example
If you convert the array back to a string
Otherwise you are stuck with array methods
Lots of string methods too. Consider .contains() and -contains,, also select string
10-15-2024 10:48 AM
Just count how many words exists and in what order.