Substring: How to Split a String
·
216 words
·
2 minutes read
In the example below we are looking at how to take the first x number of characters from the start of a string. If we know a character we want to separate on, like a space, we can use strings.Split()
instead. But for this we’re looking to get the first 6 characters as a new string.
To do this we first convert it into a rune, allowing for better support in different languages and allowing us to use it like an array. Then we pick the first characters using [0:6]
and converting it back to a string.
Split Based on Position:
|
|
Split Based on Character:
The alternative way, using the strings
package would be:
|
|