let uniScalars = someString.unicodeScalars
for uniScalar in uniScalars
{
let prop = uniScalar.properties
var out = ""
out += " \(prop.generalCategory);"
out += " \(prop.name ?? "no name");"
}
But I also need the block and script property.
Is there a way do get this in Swift, or do I have to scan the Unicode Blocks.txt and Script.txt?