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.
我正在使用 rails 3 和 ruby 1.9.3 我想要删除
“[\
部分来自
"[\"NAS1149C0363R"
我正在使用 sub 方法但无法实现所以请帮助我。
也许这会有所帮助:
"[\"NAS1149C0363R".sub(/\[\"/,'')
您可能的意思是要删除[\",而不是"[\.
[\"
"[\
"[\"NAS1149C0363R".delete('["')