简体   繁体   English

Swift替换字符串中的多个字符

[英]Swift Replace Multiple Characters in String

Below is the following line of code I use to replace an HTML break tag with a carriage return. 下面是我用来替换带有回车符的HTML break标记的以下代码行。 However, I have other HTML symbols that I need to replace and when I call this line of code again, with different parameters, it's as if the first one is overwritten. 但是,我还需要替换其他HTML符号,当我再次调用这行代码时,使用不同的参数,就像第一个被覆盖一样。 Is there a way I can include multiple parameters? 有没有办法可以包含多个参数? Is there a more efficient way to do this in Swift? 在Swift中有更有效的方法吗? For example: replace both br> with "" and nbsp with "". 例如:将br>替换为“”,将nbsp替换为“”。

textView.text = content.stringByReplacingOccurrencesOfString("<br /><br />", withString:"\r")

Use replacingOccurrences along with a the String.CompareOptions.regularExpresion option. 使用replacingOccurrences用的String.CompareOptions.regularExpresion选项一起。

Example (Swift 3): 示例(Swift 3):

var x = "<Hello, [play^ground+]>"
let y = x.replacingOccurrences(of: "[\\[\\]^+<>]", with: "7", options: .regularExpression, range: nil)
print(y)

Input characters which are to be replaced inside the square brackets like so [\\\\ Characters] 在方括号内输入要输入的字符,如[\\\\字符]

Output: 输出:

7Hello, 7play7ground777

I solved it based on the idea of Rosetta Code 我根据Rosetta Code的想法解决了这个问题

extension String {
    func stringByRemovingAll(characters: [Character]) -> String {
        return String(self.characters.filter({ !characters.contains($0) }))
    }

    func stringByRemovingAll(subStrings: [String]) -> String {
        var resultString = self
        subStrings.map { resultString = resultString.stringByReplacingOccurrencesOfString($0, withString: "") }
        return resultString
    }
}

Example: 例:

let str = "Hello, stackoverflow"
let chars: [Character] = ["a", "e", "i"]
let myStrings = ["Hello", ", ", "overflow"]

let newString = str.stringByRemovingAll(chars)
let anotherString = str.stringByRemovingAll(myStrings)

Result, when printed: 结果,打印时:

newString: Hllo, stckovrflow Hllo, stckovrflowHllo, stckovrflow

anotherString: stack anotherString: stack

As @matt mentioned you are starting over with the same content string. 正如@matt所提到的,你将重新开始使用相同的content字符串。 The stringByReplacingOccurrencesOfString method doesn't actually change anything in the original content string. stringByReplacingOccurrencesOfString方法实际上不会更改原始content字符串中的任何content It returns to you a new string with the replacement changes while content remains unchanged. content保持不变时,它会返回一个包含替换更改的新字符串。

Something like this should work for you 这样的事情对你有用

let result1 = content.stringByReplacingOccurrencesOfString("<br /><br />", withString:"\r") 
let result2 = result1.stringByReplacingOccurrencesOfString(" &nbsp;", withString:" ")
textView.text = result2
extension String {
    var html2AttributedString:NSAttributedString {
        return NSAttributedString(data: dataUsingEncoding(NSUTF8StringEncoding)!, options:[NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType, NSCharacterEncodingDocumentAttribute: NSUTF8StringEncoding], documentAttributes: nil, error: nil)!
    }
}

let myHtmlCode = "<style type=\"text/css\">#red{color:#F00}#green{color:#0F0}#blue{color: #00F}</style><span id=\"red\" >Red</span> <span id=\"green\" >Green</span><span id=\"blue\">Blue</span>"

myHtmlCode.html2AttributedString

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM