To get the last character of a string in Go, you can use indexing.
Here's an example:
main.go142 chars10 lines
We retrieve the last character of the string str
by using indexing with len(str)-1
. The string()
function is then used to convert the integer representation of the last character back into a string, which is then printed to the console with fmt.Println()
.
gistlibby LogSnag