I'm making a Note-Taking-App. I save Attributed text On DetailVC and I show the preview in the UITableViewCell label.
In the label I have a text like this
The Bold Title
my Text
and I want to change this like
The Bold Title
my Text
I found the solution in String
let regex = try! NSRegularExpression(pattern: "\n+", options: [])
let newString = regex.stringByReplacingMatches(in: MyString, options: [], range: NSRange(location: 0, length: MyString.characters.count), withTemplate: "\n")
but how can I do it in NSAttirbutedString?
pls help!