# Camel *Str
Camel
returns a new instance of Str in camelCase.
# Signature
func (s *Str) Camel() *Str
# Examples
str.New("string manipulation").Camel().String()
// "stringManipulation"
str.New("").Camel().String()
// ""
str.New("Hello world").Camel().String()
// "helloWorld"
← Between Capitalize →