Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 XPath Fetch Page 模块来获取页面并将其转换为一堆节点。其中一个节点具有“ 2012-07-28 00:00”,但在 Yahoo!中 显示为空格(“ ”)管道。我也在这里输入了字符串,但它认为它是一个常规空格。
2012-07-28 00:00
如何将此不间断空间转换为常规空间?我尝试使用 Regex 模块,但我尝试放入“查找”字段的所有内容都与不间断空格不匹配。
我尝试使用“ ”、“ ”、“  ”,但这些都不起作用。有什么建议么?
 
使用 Regexp 模块 {replace: " \xA0", with: " "} 将不间断空格转换为常规空格。
\xA0
注意:此行为未记录在案,因此可能会更改,恕不另行通知。