Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Zero Width Space in Swift?

Tags:

ios

swift

iphone

How to create NSString of zero width space.

In Objective-C, I used to create like this:

NSString *emptyText = @"\u200B";

How to create it in Swift? I have tried following, but it is not working.

let emptyString = "\u200B"
like image 825
Khawar Avatar asked Dec 11 '22 02:12

Khawar


1 Answers

Use this syntax in Swift

let emptyString = "\u{200B}"

Of course you can also use unicode characters directly in your Swift code.

like image 179
Nikos M. Avatar answered Feb 07 '23 17:02

Nikos M.