From this string :
gs://analytics_models_from_g_rdd_ga/9g653798d-7e13-4238-55443-6db72ace9911$$$$events_today.csv
I'm trying to extract this text :
9g653798d-7e13-4238-55443-6db72ace9911
and in separate REGEX function events_today
The rolls for the first string:
- The string will always end with $$$$.
- The string will always start with ga/.
- The extracted text length can be changed.
I sew several tutorials and red regex references but still not succeed
I thought the solution will be /\\s*(.*?)\\s*$$$$
but is not.
In general, to extract a string between 2 strings