function deleteAfterBefore(text){ ? ?? ? ? ? ? ?var textCopy=text.slice();//將對text的操作轉(zhuǎn)移到textCopy上 ? ?? ? ? ? ? ?var m=0; ? ?? ? ? ? ? ?while(charPattern.test(textCopy[m])){ ? ?? ? ? ? ? ? ? ?text=textCopy.slice(m+1);//刪除開始不是字母、數(shù)字和英文的字符 ? ?? ? ? ? ? ? ? ?m++; ? ?? ? ? ? ? ?} ? ?? ? ? ? ? ?textCopy=text.slice(); ? ?? ? ? ? ? ?var n=textCopy.length; ? ?? ? ? ? ? ?while(charPattern.test(textCopy[n-1])){ ? ?? ? ? ? ? ? ? ?text=textCopy.slice(0,n-1);//刪除開始不是字母、數(shù)字和英文的字符 ? ?? ? ? ? ? ? ? ?n--; ? ?? ? ? ? ? ?} ? ?? ? ? ? ? ?return text; ? ?? ? ? ?} ? ?
兩個while循環(huán)做什么用的?
19990000
2017-09-06 22:29:20