Working in OpenRefine I want to find word pairs where the second word is 'Street'.
I have a python regular expression which works for this but I can't get it to work in OpenRefine.
https://regex101.com/r/igjCuo/94 show the regex working
\w+(\s+Street)
My issue is that I am obviously not inserting the regex into OpenRefine correctly.
Testing
If I try
value.find("Street")
then all cells which contain the word correctly return.
However putting the regular expression into the same query doesn't work
I know that this is something basic about formatting the query but I am at a loss and would really appreciate some help.