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.
如何在 ruby 1.8.7中查找和替换unicode 引号?例如,来自:
“Good morning.”
至:
'Good morning.'
您应该能够进行正常的搜索和替换,例如:
>> '“Good morning.”'.gsub(%r/“|”/, "'") => "'Good morning.'"