编程语言中string trim是什么意思?
展开全部
去掉字符串首尾空格 防止不必要的空格导致错误
举例:
public class test{
public static void main(String[] args) {
String str = " abc ";
System.out.println(str.length());//输出6
System.out.println(str.trim().length());//输出3
}
}
举例:
public class test{
public static void main(String[] args) {
String str = " abc ";
System.out.println(str.length());//输出6
System.out.println(str.trim().length());//输出3
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询