I am getting user input on the column, row number and data they want to put in that place. How would I go about breaking the user input into pieces ? The user input will always be in the COLUMN ROW DATA format so is there any delimiter statement that I can use ?
Share
If your user input is a string in the format:
You can use the split() method on the space (” “) to get an array of strings.
For example
If this isn’t what you’re looking for then please elaborate your question.