I'm trying to use Regex to match everything after the double occurrence of an underscore in the following string: ABCD__A123
. My desired output would be A123
.
I currently have /__(.+)/
which produces an output that includes the double underscore. I've searched all over SO and Google for answers with no luck!