Golang : How to get username from email address
Just need a simple solution to extract the username from a given email address. The code below uses strings.Split()
function to split an email address in between the @
symbol and we take the position 0
from the resulting slice to get the username
Here you go!
package main
import (
"fmt"
"strings"
)
func main() {
username := strings.Split("iamspammer@gmail.com", "@")
fmt.Printf("%q\n", username[0])
}
Output:
"iamspammer"
Hope this helps and happy coding!
See also : Golang : Chunk split or divide a string into smaller chunk example
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.9k PHP : How to check if an array is empty ?
+25.2k Golang : convert rune to integer value
+26.6k Golang : Force your program to run with root permissions
+10.4k Golang : Resolve domain name to IP4 and IP6 addresses.
+10k Golang : Bcrypting password
+13.3k Android Studio : Password input and reveal password example
+9.6k Random number generation with crypto/rand in Go
+4.2k Golang : Converting individual Jawi alphabet to Rumi(Romanized) alphabet example
+15.1k Golang : Get all local users and print out their home directory, description and group id
+6.5k Golang : Skip or discard items of non-interest when iterating example
+15.6k Golang : Get current time from the Internet time server(ntp) example