Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What makes up the category called "Marks" in NSCharacterSet?

I am reading up on NSCharacterSet. Can anyone tell me (with an example if possible) what characters are in the category "Marks"?

like image 815
tranvutuan Avatar asked Nov 05 '22 04:11

tranvutuan


1 Answers

The docs have a short description:

nonBaseCharacterSet

Returns a character set containing the characters in the category of Marks.

+ (id)nonBaseCharacterSet
Return Value
A character set containing the characters in the category of Marks.

Discussion
This set is also defined as all legal Unicode characters with a non-spacing priority greater than 0. Informally, this set is the set of all characters used as modifiers of base characters.

like image 97
jscs Avatar answered Nov 28 '22 07:11

jscs