Need help displaying the text between character '$' and string 'Request'
If we had this string
blah blah blah $60 blahblah blah Request
I would like to only print out
$60 blahblah blah
I've tried
select '$' || REGEXP_SUBSTR(notes,'([^\$]).*?(?=Request)')
this returns nothing. Sorry regular expressions are not my strong point