java去掉字符串首尾的引号
时间: 2023-08-08 09:14:09 浏览: 341
Js中去掉空格经典代码
4星 · 用户满意度95%
可以使用Java的String类的trim()方法和replace()方法来去掉字符串首尾的引号。具体实现如下:
```
String str = "\"hello world\"";
str = str.trim().replace("\"", "");
System.out.println(str);
```
输出结果为:
```
hello world
```
在这个例子中,首先使用trim()方法去掉了字符串首尾的空格,然后使用replace()方法将字符串中的引号替换为空字符串,最终得到去掉引号的字符串。
阅读全文