如何在javascript中删除字符串引号

时间:2018-04-18 12:13:03

标签: javascript underscore.js

我正在尝试删除字符串引号,但无法删除。

例如:['moe', 'larry', 'curly'], [30, 40, 50]

需要:['moe', 'larry', 'curly'], [30, 40, 50]

因为我正在尝试下划线对象功能(_。对象)。

例如:_.object("['moe', 'larry', 'curly'], [30, 40, 50]")

只有我得到未定义的结果。

1 个答案:

答案 0 :(得分:2)

如果您只想删除双引号,可以这样做:



        src/app/edit-user/edit-user.component.ts(23,9): error TS2322: Type 
       'Object' is not assignable to type 'User'.

       The 'Object' type is assignable to very few other types. Did you mean 
       to use the 'any' type instead?

       Property 'id' is missing in type 'Object'.




const quotes = "['moe', 'larry', 'curly'], [30, 40, 50]"; const noQuotes = quotes.replace(/\"/, ''); console.log(noQuotes);是一个匹配字符串中任何/\"/的正则表达式。你只需用空字符串替换它们。