# Remove *Str
Remove
returns a new instance of Str with all occurrences of the given substring removed.
# Signature
func (s *Str) Remove(old string) *Str
# Examples
str.New("i like c++").Remove("c++").String()
// "i like "
str.New("rocket π man").Remove("π").String()
// "rocket man"
str.New("go, go, go!").Remove("go").String()
// ", , !"
str.New("δ½ ε₯½δΈη").Remove("δ½ ε₯½").String()
// "δΈη"
str.New("").Remove("go").String()
// ""