Firestore does not offer any regular expression in queries. Those types of queries do not scale in the way that Firestore requires. It only supports exact string matches, and range queries with string prefixes.
If you need more flexible text-based queries, consider mirroring your data to a text search engine, such as Algola, as describe in the documentation.