bool
IsNotEmpty returns true if the current string is not empty.
IsNotEmpty
func (s *Str) IsNotEmpty() bool
str.New("golang").IsNotEmpty() // true str.New("").IsNotEmpty() // false str.New(" ").IsNotEmpty() // true
← IsJson IsUrl →