Golang : Get first few and last few characters from string
Problem:
You need to find the last few or first few characters from a string. How to do that?
Solution:
In Golang, a string variable has an index that you can use to extract characters out. Kinda like a slice or array. All you need to do is to assign a new variable with the "extracted" characters based on given index position.
For example :
package main
import (
"fmt"
)
func main() {
str := "hello"
lastChar := str[len(str)-1:]
fmt.Println(lastChar) // gives "o"
lastTwoChar := str[len(str)-2:]
fmt.Println(lastTwoChar) // gives "lo"
firstTwoChar := str[:2]
fmt.Println(firstTwoChar) // gives "he"
}
Happy coding!
See also : Golang : How to check if a string starts or ends with certain characters or words?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.9k Golang : On lambda, anonymous, inline functions and function literals
+26.2k Golang : Detect (OS) Operating System
+13.1k Golang : Get digits from integer before and after given position example
+7.3k Golang : automatically figure out array length(size) with three dots
+9.1k Golang : Generate random elements without repetition or duplicate
+11.9k Golang : unknown escape sequence error
+4.7k Golang : Selection sort example
+6.1k SSL : How to check if current certificate is sha1 or sha2 from command line
+20.5k Generate checksum for a file in Go
+6.8k Python : Fix SyntaxError: Non-ASCII character in file, but no encoding declared
+4.8k Golang : How to get capacity of a slice or array?
+6.4k Golang : Tell color name with OpenCV example