JavaScriptの中の住民たち3-スペースの除去と重複

13973 ワード

コードのように、diyTrimおよびremoveRepetition関数をそれぞれ実現し、コード中のテストケースを実行します.
 1 DOCTYPE html>
 2 <html>
 3 <head>
 4     <meta charset="utf-8" />
 5     <title>JS     3title>
 6 
 7 head>
 8 <body>
 9     <script>
10     /*
11                 
12          ,    、    
13                   
14 */
15 function diyTrim(str) {
16 //               ,          ,      ,    。
17 for(i=0;i<str.length;i++){
18     if(str[0]==" "||str[0]==" "){
19         str=str.slice(1);
20     }
21     else if(str[str.length-1]==" "||str[str.length-1]==" "){
22         str=str.slice(0,str.length-2);
23     }
24     else{
25         break;
26     }
27 }
28     return str;
29 }
30 
31 //     
32 console.log(diyTrim(' a f b    ')); // ->a f b
33 console.log(diyTrim('    ffdaf    ')); // ->ffdaf
34 console.log(diyTrim('1    ')); // ->1
35 console.log(diyTrim('  f')); // ->f
36 console.log(diyTrim('     a f b    ')); // ->a f b
37 console.log(diyTrim(' ')); // ->
38 console.log(diyTrim(' ')); // ->
39 console.log(diyTrim('')); // ->
40 
41 /*
42      str ,       
43 */
44 function removeRepetition(str) {
45     var result = "";
46 
47     for(i=0,len=str.length;i<len;i++){//  len,          
48         if(str[0]==str[1]){//        
49             str=str.slice(1);//     str,         。
50         }
51         else{
52             result=result+str[0];//
53             str=str.slice(1);
54         }
55     }
56     return result;
57 }
58 
59 //     
60 console.log(removeRepetition("aaa")); // ->a
61 console.log(removeRepetition("abbba")); // ->aba
62 console.log(removeRepetition("aabbaabb")); // ->abab
63 console.log(removeRepetition("")); // ->
64 console.log(removeRepetition("abc")); // ->abc
65 script>
66 body>
67 html>
 
転載先:https://www.cnblogs.com/Joe-and-Joan/p/10072340.html