Functionsstarts_withVersion: v4.23On this pagestarts_withChecks if a string starts with a specified substring.starts_with(x:string, prefix:string) -> boolDescriptionThe starts_with function returns true if x starts with prefix and false otherwise.ExamplesCheck if a string starts with a substringfrom {x: "hello".starts_with("he")}{x: true}See Alsoends_with