Skip to content
Advertisement

Creating an array from a string separated by spaces

I have an input where a user may type in multiple words, and they are told to separate it with a space. So input may look like this:

JavaScript

or like this:

JavaScript

How can I check for spaces, and if there are spaces, split the words, then put it all into an array? I’ll loop through that array in my program. I’m just new to string handling like this.

Advertisement

Answer

See explode

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