Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 특정 문자를 깨고 문자열을 어떻게 분할합니까?


~가 나타날 때마다 문자열을 분할하려면 배열을 분할하십시오. 분할 후 줄 바꿈(예:~이 나타날 때마다
)을 추가합니다.

예:

This is demo text 1!~This is demo text 2!~~This is demo text 3!

다음과 같이 ~에 대해 줄 바꿈을 추가하고 분할한 후 -

This is demo text 1!
This is demo text 2!
This is demo text 3!

예시

전체 예를 살펴보겠습니다.

실시간 데모

<!DOCTYPE html>
<html>
   <body>
   <h2>Adding line break</h2>
   <script>
      var myArray = 'This is demo text 1!~This is demo text 2!~
                     ~This is demo text 3!~This is demo text 4!~
                     ~This is demo text 5!';
      document.write("Original Array: " +myArray);

      var brk = myArray.split('~');
      var res = brk.join(" <br> ");

      document.write("<br><br>"+res);
      </script>
      <p>Each occurrence of ~ adds a line break above.</p>
   </body>
</html>