public static String myTrim(String str)
{
int start = 0,end = str.length()-1;//
while(start<=end && str.charAt(start)==' ')
start++;
while(start<=end && str.charAt(end)==' ')
end--;
String s = str.substring(start,end-1); / / 应该是这样 String s = str.substring(start,end+1);
return s;
} |