Je souhaite remplacer une sous-chaîne (par exemple, @"replace"
) d'une NSAttributedString
par une autre NSAttributedString
.
Je cherche une méthode équivalente à NSString
's stringByReplacingOccurrencesOfString:withString:
pour NSAttributedString
.
Convertissez votre chaîne attribuée en une instance de NSMutableAttributedString
.
La chaîne attribuée mutable a une propriété mutableString
. Selon la documentation:
"Le récepteur suit les modifications apportées à cette chaîne et conserve ses mises à jour d'attributs."
Vous pouvez donc utiliser la chaîne mutable résultante pour exécuter le remplacement avec replaceOccurrencesOfString:withString:options:range:
.
Voici comment modifier la chaîne de NSMutableAttributedString tout en préservant ses attributs:
Rapide:
// first we create a mutable copy of attributed text
let originalAttributedText = nameLabel.attributedText?.mutableCopy() as! NSMutableAttributedString
// then we replace text so easily
let newAttributedText = originalAttributedText.mutableString.setString("new text to replace")
Objectif c:
NSMutableAttributedString *newAttrStr = [attribtedTxt.mutableString setString:@"new string"];
Dans mon cas, la seule manière suivante (testée sur iOS9):
NSAttributedString *attributedString = ...;
NSAttributedString *anotherAttributedString = ...; //the string which will replace
while ([attributedString.mutableString containsString:@"replace"]) {
NSRange range = [attributedString.mutableString rangeOfString:@"replace"];
[attributedString replaceCharactersInRange:range withAttributedString:anotherAttributedString];
}
Bien sûr, il sera agréable de trouver un autre meilleur moyen.
Avec Swift 4 et iOS 11, vous pouvez utiliser l’un des 2 moyens suivants pour résoudre votre problème.
NSMutableAttributedString
replaceCharacters(in:with:)
NSMutableAttributedString
a une méthode appelée replaceCharacters(in:with:)
. replaceCharacters(in:with:)
a la déclaration suivante:
Remplace les caractères et les attributs d'une plage donnée par les caractères et les attributs de la chaîne attribuée.
func replaceCharacters(in range: NSRange, with attrString: NSAttributedString)
Le code Playground ci-dessous montre comment utiliser replaceCharacters(in:with:)
afin de remplacer une sous-chaîne d'une instance NSMutableAttributedString
par une nouvelle instance NSMutableAttributedString
:
import UIKit
// Set initial attributed string
let initialString = "This is the initial string"
let attributes = [NSAttributedStringKey.foregroundColor : UIColor.red]
let mutableAttributedString = NSMutableAttributedString(string: initialString, attributes: attributes)
// Set new attributed string
let newString = "new"
let newAttributes = [NSAttributedStringKey.underlineStyle : NSUnderlineStyle.styleSingle.rawValue]
let newAttributedString = NSMutableAttributedString(string: newString, attributes: newAttributes)
// Get range of text to replace
guard let range = mutableAttributedString.string.range(of: "initial") else { exit(0) }
let nsRange = NSRange(range, in: mutableAttributedString.string)
// Replace content in range with the new content
mutableAttributedString.replaceCharacters(in: nsRange, with: newAttributedString)
NSMutableString
replaceOccurrences(of:with:options:range:)
NSMutableString
a une méthode appelée replaceOccurrences(of:with:options:range:)
. replaceOccurrences(of:with:options:range:)
a la déclaration suivante:
Remplace toutes les occurrences d'une chaîne donnée dans une plage donnée par une autre chaîne donnée, en renvoyant le nombre de remplacements.
func replaceOccurrences(of target: String, with replacement: String, options: NSString.CompareOptions = [], range searchRange: NSRange) -> Int
Le code Playground ci-dessous montre comment utiliser replaceOccurrences(of:with:options:range:)
afin de remplacer une sous-chaîne d'une instance NSMutableAttributedString
par une nouvelle instance NSMutableAttributedString
:
import UIKit
// Set initial attributed string
let initialString = "This is the initial string"
let attributes = [NSAttributedStringKey.foregroundColor : UIColor.red]
let mutableAttributedString = NSMutableAttributedString(string: initialString, attributes: attributes)
// Set new string
let newString = "new"
// Replace replaceable content in mutableAttributedString with new content
let totalRange = NSRange(location: 0, length: mutableAttributedString.string.count)
_ = mutableAttributedString.mutableString.replaceOccurrences(of: "initial", with: newString, options: [], range: totalRange)
// Get range of text that requires new attributes
guard let range = mutableAttributedString.string.range(of: newString) else { exit(0) }
let nsRange = NSRange(range, in: mutableAttributedString.string)
// Apply new attributes to the text matching the range
let newAttributes = [NSAttributedStringKey.underlineStyle : NSUnderlineStyle.styleSingle.rawValue]
mutableAttributedString.setAttributes(newAttributes, range: nsRange)
Je devais mettre du texte en gras dans les balises <b>
, voici ce que j'ai fait:
- (NSAttributedString *)boldString:(NSString *)string {
UIFont *boldFont = [UIFont boldSystemFontOfSize:14];
NSMutableAttributedString *attributedDescription = [[NSMutableAttributedString alloc] initWithString:string];
NSRegularExpression *regex = [NSRegularExpression regularExpressionWithPattern:@".*?<b>(.*?)<\\/b>.*?" options:NSRegularExpressionCaseInsensitive error:NULL];
NSArray *myArray = [regex matchesInString:string options:0 range:NSMakeRange(0, string.length)] ;
for (NSTextCheckingResult *match in myArray) {
NSRange matchRange = [match rangeAtIndex:1];
[attributedDescription addAttribute:NSFontAttributeName value:boldFont range:matchRange];
}
while ([attributedDescription.string containsString:@"<b>"] || [attributedDescription.string containsString:@"</b>"]) {
NSRange rangeOfTag = [attributedDescription.string rangeOfString:@"<b>"];
[attributedDescription replaceCharactersInRange:rangeOfTag withString:@""];
rangeOfTag = [attributedDescription.string rangeOfString:@"</b>"];
[attributedDescription replaceCharactersInRange:rangeOfTag withString:@""];
}
return attributedDescription;
}
NSMutableAttributedString *result = [[NSMutableAttributedString alloc] initWithString:@"I am a boy."];
[result addAttribute:NSForegroundColorAttributeName value:[UIColor blackColor] range:NSMakeRange(0, [result length])];
NSMutableAttributedString *replace = [[NSMutableAttributedString alloc] initWithString:@"a"];
[replace addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, [replace length])];
[result replaceCharactersInRange:NSMakeRange(5, [replace length]) withAttributedString:replace];
Je trouve que toutes les autres réponses ne fonctionnent pas. Voici comment j'ai remplacé le contenu d'une chaîne NSAttributed dans une extension de catégorie:
func stringWithString(stringToReplace:String, replacedWithString newStringPart:String) -> NSMutableAttributedString
{
let mutableAttributedString = mutableCopy() as! NSMutableAttributedString
let mutableString = mutableAttributedString.mutableString
while mutableString.containsString(stringToReplace) {
let rangeOfStringToBeReplaced = mutableString.rangeOfString(stringToReplace)
mutableAttributedString.replaceCharactersInRange(rangeOfStringToBeReplaced, withString: newStringPart)
}
return mutableAttributedString
}
Swift 4: Mise à jour sunkas excellente solution pour Swift 4 et enveloppée dans une "extension". Découpez-le simplement dans votre ViewController (en dehors de la classe) et utilisez-le.
extension NSAttributedString {
func stringWithString(stringToReplace: String, replacedWithString newStringPart: String) -> NSMutableAttributedString
{
let mutableAttributedString = mutableCopy() as! NSMutableAttributedString
let mutableString = mutableAttributedString.mutableString
while mutableString.contains(stringToReplace) {
let rangeOfStringToBeReplaced = mutableString.range(of: stringToReplace)
mutableAttributedString.replaceCharacters(in: rangeOfStringToBeReplaced, with: newStringPart)
}
return mutableAttributedString
}
}
J'ai une exigence spécifique et fixe comme ci-dessous. Cela pourrait aider quelqu'un.
Condition préalable: Dans le storyboard, le texte enrichi est directement ajouté à l'attribut UITextView qui contient un mot "App Version: 1.0". Maintenant, je dois dynamiser le numéro de version en le lisant depuis info plist.
Solution: Supprimé le numéro de version 1.0 du storyboard, conserve simplement "App Version:" et ajoute le code ci-dessous.
NSAttributedString *attribute = self.firsttextView.attributedText;
NSMutableAttributedString *mutableAttri = [[NSMutableAttributedString alloc] initWithAttributedString:attribute];
NSString *appVersionText = @"App Version:";
if ([[mutableAttri mutableString] containsString:appVersionText]) {
NSDictionary* infoDict = [[NSBundle mainBundle] infoDictionary];
NSString* version = [infoDict objectForKey:@"CFBundleShortVersionString"];
NSString *newappversion = [NSString stringWithFormat:@"%@ %@",appVersionText,version] ;
[[mutableAttri mutableString] replaceOccurrencesOfString:appVersionText withString:newappversion options:NSCaseInsensitiveSearch range:NSMakeRange(0, mutableAttri.length)];
self.firsttextView.attributedText = mutableAttri;
}
Terminé!! Texte attribué mis à jour/modifié.