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
+5.4k Unix/Linux/MacOSx : Get local IP address
+9.9k Golang : How to check if a website is served via HTTPS
+12k Golang : Validate email address
+14.8k JavaScript/JQuery : Detect or intercept enter key pressed example
+8.3k Golang : Another camera capture GUI application with GTK and OpenCV
+5.8k Golang : Experimenting with the Rejang script
+5.2k Gogland : Datasource explorer
+4.8k Linux : How to set root password in Linux Mint
+14.6k Golang : Basic authentication with .htpasswd file
+34.7k Golang : Upload and download file to/from AWS S3
+10k Golang : Wait and sync.WaitGroup example
+10.7k Golang : Create Temporary File