I'm trying to create a regex for my password validation in PHP. What I want is not at least 2 of both lowercase letter, uppercase letter, number and symbols, but at least one category from these three categories, for example, "Rose" would work, "Rose456" would also work, and "rose456" will work, "Rose456!" will also work.
Thank you so much!