Get Length

Returns the number of characters in the string.

Examples in Go
package main

import (
	"fmt"
)

func main() {
	fmt.Println(len("Gopher"))
}