ios - Replace character in NSMutableAttributedString -


this works regular nsstring:

nsstring *newstring = [mystring stringbyreplacingoccurrencesofstring:@"," withstring:@""]; 

but there no such method nsmutableattributedstring. how remove instances of comma in nsmutableattributedstring?

do before create attributed string, if can or depending on how source it. if can't can use replacecharactersinrange:withstring: (or replacecharactersinrange:withattributedstring:), need know range need search , iterate yourself.


Comments

Popular posts from this blog

css - SVG using textPath a symbol not rendering in Firefox -

Java 8 + Maven Javadoc plugin: Error fetching URL -

node.js - How to abort query on demand using Neo4j drivers -