코드 조각에는 수십 줄 또는 수천 개의 문자가 포함될 수 있습니다. 줄 수를 계산하려면 먼저 코드 문자열을 배열로 변환한 다음 배열의 길이를 반환하면 됩니다.
기존 접근 방식:
배열로 변환하면 효율성이 훨씬 높아집니다.
msgbox("hello world!")
<script> <BR>var counter = 0; <BR>var str = abc.value; <BR>for(i=0; i<str.length; i++) <BR>{ <BR> if(str.substr(i,1)=="\n") <BR> counter +=1; <BR>} <BR>alert(counter); <BR></script><script> <BR> alert(abc.value.split("\n").length) <BR></script> <script> <BR> alert("代码总行数:"+(abc.value.split("\n").length-1).toString()) <BR></script>