How to generate a fixed length random string using Golang

  • 18 February 2018
  • ADM

How to generate a fixed length random string using Golang using a dictionary of chars.


How to convert a string to an unsigned int in Golang

  • 26 June 2020
  • ADM

How to convert a string to an unsigned int in Golang using strconv.ParseUint method.


How to convert a string to int in Golang

  • 14 August 2020
  • ADM

How to convert a string to int in Golang using strconv.Atoi and strconv.ParseInt methods.


How to convert a string to a float in Golang

  • 26 June 2020
  • ADM

How to convert a string to a float in Golang using strconv.ParseFloat method.


How to convert a string to a boolean type in Golang

  • 11 November 2017
  • ADM

How to convert a string to a boolean type in Golang using strconv.ParseBool method.


How to convert a char array to a string using Golang

  • 26 June 2020
  • ADM

How to convert a char array to a string using Golang using string method.