关于几个 字符串 操作的问题
关于几个 字符串 操作的问题
1. 怎么将ascii码转成字符
2.求子串位置 ,例如 : this is a cup 如何求出 is 的首次的位置 , 返回 3
3.如何去除字符左边或右边空格
4.删除子串 ,例如 :this is a cup 如何从第2个字符开始 删除 4个字符
------解决方案--------------------1.char(65);
2.String s = "this is a cup ";
int index = s.indexOf( "is ");
3.**.trim();
4.StringBuffer sb = new StringBuffer(s);
sb.delete(2, 2+4);
------解决方案-------------------- String str= " 123456 ";
去左空格 str=str.replaceAll( "^\\s* ", " ");
去右空格 str=str.replaceAll( "\\s*$ ", " ");