http://qs1969.pair.com?node_id=369086


in reply to Re^2: non-exact regexp matches
in thread non-exact regexp matches

I don't see the connection between using the (?{ }) and (?!) to report all matches and your original question of finding "partial" matches.

But so, you want any regexp to match fuzzy. However, then your example is unclear - it's picking out positions in the regex (not in the string) to indicate where characters should be changed. Do you also want to be able to change special characters? Is it ok to introduce characters in the regex to make it match? (That would be easy, just add a | as the first character in the regex).

Abigail