Cuts out the first appearance of the string sep from this string, in other words, returns a tuple of two strings and a bool, the first string is the substring before the first appreance of sep, the second string is the substring after the first appearance of sep. The bool result is true iff sep appears in this string.
If sep does not appear in this string at all, return this string as the first string, the empty string as the second, and false as the bool.
0.095dev (2025-10-09 18:01:25 GIT hash 4826e516431c193e428991dd546a46472973d8d4 built by fridi@fzen)
returns a tuple of two strings and a bool, the first string is the substring before
the first appreance of sep, the second string is the substring after the first
appearance of sep. The bool result is true iff sep appears in this string.
If sep does not appear in this string at all, return this string as the first string,
the empty string as the second, and false as the bool.