Not really. Regexes are designed for searching/parsing strings, not generating strings. Is it possible to utilize them in some way, possibly, but the root of your code can't (or at least shouldn't) be reliant on regular expressions.
Regular expressions could be used to validate that a particular password meets some set of requirements (i.e. asking if an already generated password is strong). Therefore one possible strategy would be to generate random passwords and keep trying until one validates as strong. That would be a very bad idea. You're much better off writing the generation algorithm such that it always generates a strong password in the first place.
If your question is whether or not regexes can be used to validate user generated passwords then please change the question accordingly, because if that's the case then the answer is "yes".