文字列の両端を削除するスペースアルゴリズム
1587 ワード
1 function trim(str){//
2 var start,end;
3 start = 0;
4 end = str.length - 1;
5
6 while(start<=end && str.charAt(start)==" "){
7 start++;
8 }
9 while(start<=end && str.charAt(end)==" "){
10 end--;
11 }
12 return str.substring(start,end+1);
13 }
転載先:https://www.cnblogs.com/njupt-Qsimple/p/5351391.html