如何将带引号的数字替换为字符串中的数字格式

时间:2017-08-03 19:36:51

标签: java

我在Java中有一个String,就像这样 -

select yourFields
from yourTables
where userId in (
select userId
from wherever
where whatever makes them similar
)

我需要没有引号的数字

{elementId:'pagination',locale:'en',activePage:'1',items:'-10',maxButtons:'5'}

尝试

{elementId:'pagination',locale:'en',activePage: 1, items: -10, maxButtons:5}

但它会用引号返回我的数字。

有没有办法删除数字的这些引号?

1 个答案:

答案 0 :(得分:0)

如果{elementId:'pagination',locale:'en',activePage:'1',items:'-10',maxButtons:'5'}是您所说的字符串,则可以使用String.replace方法。因此:foo.replace("'",""); 此方法返回一个包含所有'replacement。

实例的字符串