DEV Community

Discussion on: 8 Most used functions of strings package in Go

Collapse
 
ryantenorio profile image
Ryan

Good summary! Between golang's string and strconv package, the standard library covers a lot of ground (not even considering the fmt package!). Anytime I need to do work on strings I double-check the package docs to make sure I'm not missing out on something helpful.

Collapse
 
rockey5520 profile image
Rakesh Mothukuri

It's true @ryantenorio , I absolutely love the idea of "there should be only one way of doing a thing" and Go reflects it most of the times.