I am trying to match a name with the following regex
/^[a-zA-ZàáâäãåąčćęèéêëėįìíîïłńòóôöõøùúûüųūÿýżźñçčšžÀÁÂÄÃÅĄĆČĖĘÈÉÊËÌÍÎÏĮŁŃÒÓÔÖÕØÙÚÛÜŲŪŸÝŻŹÑßÇŒÆČŠŽ∂ð ,\'\-]+$/
This matches the following examples:
- Tom Dooley
- D'Agaene-Venus
- Tom
However, when my application starts I don't want my validator to match the /''/ string in my text input, but I would want to match the /'/ in the body of the name like in D'Agaene above.
How best to achieve this. I have tried many options without success. I suspect some negation should be include bu just have not gotten it.