I am trying to write a regex that finds the space in between "Red" and "Blend" in the text of the link.
<a title="Show products matching tag Red Blend" href="/collections/50-to-100/red-blend">Red Blend</a>
The regex will also need to be able to find both of the spaces in the following block of code:
<a title="Show products matching tag Russian River Valley" href="/collections/50-to-100/russian-river-valley">Russian River Valley</a>
In both cases I am going to be replacing the space with a non-breaking space character, but that will be handled by my server-side script.
Thanks in advance for the help.