Strings / Trim strings (remove chars or substrings

Run Settings
LanguageGo
Language Version
Run Command
package main import ( "fmt" "strings" ) func main() { s := "this is string" toRemove := " is" after := strings.Replace(s, toRemove, "", -1) fmt.Printf("Removed %#v from %#v => %#v\n\n", toRemove, s, after) }
Editor Settings
Theme
Key bindings
Full width
Lines