Last active
July 19, 2022 10:06
-
-
Save dmonagle/2d23e23a4b67cb82db32fddf626987d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension String { | |
public func splitLastWhitespace(after offset: Int) -> [Substring] { | |
guard let lastWS = self.prefix(offset).lastIndex(where: \.isWhitespace) else { | |
return [self[self.startIndex...]] | |
} | |
let first = self[self.startIndex..<lastWS] | |
let nextIndex = self.index(after: lastWS) | |
guard nextIndex != self.endIndex else { return [first] } | |
return [first, self[nextIndex...]] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment