Another possible solution:
var delimitedBy = first(",".utf16)!
(Note that this unicharis an alias of type for UInt16). This also works with string variables (which, of course, should not be an empty string).
Update for Swift 2 / Xcode 7:
var delimitedBy = ",".utf16.first!
source
share