[Ajuda] Programa.
#4

PHP код:
<script>  

function 
checkIt(str) {  

    var 
arrBracket = new Array();   
    var 
arrLineBkt = new Array();  

    var 
opens 0;  
    var 
lines 0;  

    for(
0str.length!= ji++) {  

        if(
str[i] == '{') {  
            
arrBracket[opens] = 1;  
            
arrLineBkt[opens] = lines;  
            
opens++;  
        }  

        if(
str[i] == '}') {  
            
arrBracket[opens] = 0;  
            if(!
opens) {  
                return 
alert("ERROR EXCESSIVE '}' on line " lines);  
            }  
            
opens--;  

        }  

        if(
str[i] == '\n')  lines ++;  
    }  

    if(!
opens) {  
        
alert('NO ERROR !!1 YOU IS BEST !!');  
    }  


    for(
0!= opensi++) {  
        if(
arrBracket[i]) {  
            
alert("ERROR '{' on line" +  arrLineBkt[i]);  
        }  
    }  
      
    return 
true;  
}  


</script>  

<textarea id=area>Put code here</textarea>  
<input type=button onClick=checkIt(document.getElementById('area').value) value=Hey /> 
Salva em .html e abre
Reply


Messages In This Thread
Programa. - by DannielCooper - 24.11.2013, 21:17
Re: Programa. - by focaximubh - 24.11.2013, 21:21
Re: Programa. - by DannielCooper - 24.11.2013, 21:50
Re: Programa. - by Delete_ - 24.11.2013, 21:54
Re: Programa. - by LucaAllexandre - 24.11.2013, 21:54
Re: Programa. - by DannielCooper - 24.11.2013, 22:08

Forum Jump:


Users browsing this thread: 2 Guest(s)