String::strip_prefix()Returns this string without the prefix specified. If this string does not start with the prefix, return the string unchanged.
"foo".strip_prefix("f") //-> "oo"
"bar".strip_prefix("f") //-> "bar"
"ffoo".strip_prefix("f") //-> "foo"