0

I used the XPath Fetch Page module to fetch a page and convert it to a bunch of nodes. One of the nodes has "2012-07-28 00:00", but the   appears as a space ("") in Yahoo! Pipes. I also entered the string here and it considers it a regular space, though.

How can I convert this non-breaking space to a regular space? I tried using the Regex module, but everything that I try putting in the "find" field does not match the non-breaking space.

I tried using "", " ", " ", but none of these work. Any suggestions?

Gary
  • 3,891
  • 8
  • 38
  • 60

1 Answers1

1

Use Regexp module {replace: "\xA0", with: " "} to convert a non-breaking space to a regular space.

Note: This behavior is undocumented, so may be changed without notice.

user1614572
  • 153
  • 1
  • 7