in reply to Finding a _Similar_ Substring? (Fuzzy Searching?)

If, as others have suggested, you want most characters get ignored, you could strip all those characters (with y///d) from both the haystack and the needle string, and then perform a match. Also, you may want to use case-insensitive matching.
  • Comment on Re: Finding a _Similar_ Substring? (Fuzzy Searching?)