我在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}
但它会用引号返回我的数字。
有没有办法删除数字的这些引号?
答案 0 :(得分:0)
如果{elementId:'pagination',locale:'en',activePage:'1',items:'-10',maxButtons:'5'}
是您所说的字符串,则可以使用String.replace方法。因此:foo.replace("'","");
此方法返回一个包含所有'replacement。