I'm using the following regex to clean up a document that has had apostrophes accidentally replaced with double quotes:
([a-zA-Z]\"[a-zA-Z])
That find's the first pattern match within the string, but not any subsequent ones. I've used the '*' operator after the group, which I understood would return multiple matches of that pattern, but this returns none. I've tested the regex here by adding double quotes to the example string.
Does anyone know what the operator I need is for this example?
Thanks
findall, if you are usingsearchyou will just get the first