I'm trying to build a modal driven form with custom validation. I want to Validate that the password the user insert answer the requirements (Uppercase latter,lowercase latter and number). The issue is that I don't want to write the regex especially in the method,I want to have an ineluctable service that concentrate all of my regex. I was able to inject the service to the component class but couldn't in any way access to the service instance inside the validetor method.I'm trying to build a modal driven form with cu