Skip to content
Advertisement

Add line breaks around multiple uppercase words in a string [closed]

Edited because i wasn’t clear enough

I have some text from a .txt file, that i want to display on a HTML page. I want to have a linebreak before- and after an uppercase line, but not for standalone words. Like if more than 2 words are uppercase, they should be on a seperate line, but not if its only one word.

JavaScript

How can I do this?

Advertisement

Answer

You’ll need to split each word up, put them into groups of capitalised and non-capitalised and then iterate through those groups, checking each word to find if there are multiple capitalised words in each group. Something like the following should do the job:

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