简体   繁体   中英

Zero Width Space in Swift?

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"

Use this syntax in Swift

let emptyString = "\u{200B}"

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM