I'm querying github on BigQuery. I'm trying to use the following regex expression to get the filename from a given file path, i.e.: given /src/components/App.vue it should return App:
SELECT regexp_extract(f.path, r'[A-Za-z0-9_\-\.]+?(?=\.)') as filename
This is giving the error stated in the question title. Is there a workaround I can use to achieve what I need?
