Hey @ronald,
Yes, but...

Then you'll bang your head against the wall instead of getting your problem solved -- unless you really decide you're going to learn something from the exercise.
I like the cheat-sheet @JMichaelTX mentions, but I also like this one because of the filter.
https://www.debuggex.com/cheatsheet/regex/pcre
However my most used reference is my own:
I have a local copy of this bound to an AppleScript with a keyboard shortcut in BBEdit's Script-Menu.
--------------------------------------------------------
# Auth: Christopher Stone
# dCre: 2008/01/05 05:34
# dMod: 2018/05/30 19:09
# Appl: TextWrangler
# Task: Open BBEdit/TextWrangler RegEx Cheat Sheet
# Libs: None
# Osax: None
# Tags: @Applescript, @Script, @System_Events, @TextWrangler, @RegEx, @Cheat_Sheet
--------------------------------------------------------
set preferredWindowBounds to {351, 45, 1393, 1196}
set bbeditCheatSheetPath to "~/Documents/BBEdit Documents/Documentation/RegEx Cheat Sheet.txt"
# Expand the $HOME-based (tilde) path above.
tell application "System Events" to Β¬
set bbeditCheatSheetPath to POSIX path of disk item bbeditCheatSheetPath
tell application "BBEdit"
set bbApp to a reference to it
tell document "RegEx Cheat Sheet.txt"
if it exists then
if index of its window β 1 then
set index of its window to 1
end if
else
tell bbApp to open bbeditCheatSheetPath opening in new_window
end if
if bounds of its window β preferredWindowBounds then
set bounds of its window to preferredWindowBounds
end if
end tell
end tell
--------------------------------------------------------
Since I always compose regular expressions in BBEdit, my reference is only a keystroke away. Of course nothing is stopping your from making a macro to open one (or more) of the other references in your web browser.
I've also used this site quite extensively over the years:
And don't forget our own wiki page on regular expressions.
Learning things haphazardly on the Internet has its place, but for serious study you need a reference book or two (or ten).
I started my regex odyssey on the Internet back when there wasn't much content, and it was hard to find β and as I stated earlier I pulled my hair out a lot, and my wall got pretty bloody...
When finally I got serious I bought some books.
I have all of these plus several tomes on Perl:
I'm Interested in these two, but I haven't had my hands on them yet.
Note -- βMastering Regular Expressionsβ by Jeffry Friedl has its merits but is very technical and not really for beginners.
Reading about regular expressions helps develop vocabulary, but it is only through repeatedly working with them that one develops proficiency.
Learning regular expressions is difficult for most people, but the rewards last a lifetime.
I use them every day either directly or in macros I've built that employ them.
-Chris