Despite my many efforts to learn RegEx, I find this quite hard todo, so I'm asking the community for help.
So, I have this string:
<html><head>
<title>Test</title>
</head>
<body>
<a href="goforward?U=as4395897a8druasfdas833a">Go</a>
</body>
</html>
Now I want to find as4395897a8druasfdas833a using a regex. This code is not inside an "" in the real word, although I would like to search for "goforward?U" (that one is always the same).
Thanks in advance.