- :logical
prefix?
check if string starts with given prefix
Parameters
prefix? string :string
prefix :string :regexReturns
Examples
copyprefix? "hello" "he" ; => true prefix? "boom" "he" ; => false
prefix? string :string
prefix :string :regexcopyprefix? "hello" "he" ; => true prefix? "boom" "he" ; => false