删除“从mongodb中的文档开始

时间:2013-12-15 06:01:50

标签: regex mongodb

我有一个像这样的mongodb集合:

name: 'john'
family: '"smith"'

我想从家庭的第一位和末尾删除",例如将'"smith"'转换为'smith'。我知道应该像这样使用更新和正则表达式/ ^“/,但是怎么样?

感谢您的回复。

1 个答案:

答案 0 :(得分:2)

Javascript示例:

> '"smith"'.replace(/^"|"$/g, '')
'smith'

/^"|"$/g匹配引号(^")或(|)或尾随引号("$)。