Skip to content
Advertisement

Split Function in Angular for a certain combination

I have a string which is like this:

JavaScript

or it can be

JavaScript

and I want result which should split it like this:

JavaScript

The code which I have written:

JavaScript

which is producing result like this:

JavaScript

What changes should I make in split() function to get the desired result?

Advertisement

Answer

You can replace rn with something else, then split by n and put back the replaced rn:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement