Swift에서 문자를 바꾸는 방법을 찾고 String
있습니다.
예 : "이것은 내 문자열입니다"
"This + is + my + string"을 얻기 위해 ""를 "+"로 바꾸고 싶습니다.
어떻게하면 되나요?
Swift에서 문자를 바꾸는 방법을 찾고 String
있습니다.
예 : "이것은 내 문자열입니다"
"This + is + my + string"을 얻기 위해 ""를 "+"로 바꾸고 싶습니다.
어떻게하면 되나요?
답변:
이 답변은 Swift 4 & 5 용 으로 업데이트 되었습니다 . 여전히 Swift 1, 2 또는 3을 사용중인 경우 개정 내역을 참조하십시오.
몇 가지 옵션이 있습니다. @jaumard가 제안 하고 사용 하는 것처럼 할 수 있습니다.replacingOccurrences()
let aString = "This is my string"
let newString = aString.replacingOccurrences(of: " ", with: "+", options: .literal, range: nil)
아래 @cprcrack에서 언급했듯이 options
및 range
매개 변수는 선택 사항이므로 문자열 비교 옵션이나 범위 내에서 교체를 수행하지 않으려는 경우 다음이 필요합니다.
let aString = "This is my string"
let newString = aString.replacingOccurrences(of: " ", with: "+")
또는 데이터가 이와 같은 특정 형식 인 경우 분리 문자를 바꾸는 components()
경우 문자열을 배열로 나누고 join()
함수를 사용하여 지정된 구분 기호와 함께 다시 넣을 수 있습니다. .
let toArray = aString.components(separatedBy: " ")
let backToString = toArray.joined(separator: "+")
또는 NSString의 API를 사용하지 않는 Swifty 솔루션을 찾고 있다면 이것을 사용할 수 있습니다.
let aString = "Some search text"
let replaced = String(aString.map {
$0 == " " ? "+" : $0
})
"x86_64"
새로운 매핑은 다음과 같습니다"Optional([\"x\", \"8\", \"6\", \"_\", \"6\", \"4\"])"
stringByReplacingOccurrencesOfString
Swift 2에서 사용하는 데 문제가있는 사람은 import Foundation
해당 방법을 사용할 수 있어야합니다.
이것을 사용할 수 있습니다 :
let s = "This is my string"
let modified = s.replace(" ", withString:"+")
코드의 어느 곳에 나이 확장 방법을 추가하면 :
extension String
{
func replace(target: String, withString: String) -> String
{
return self.stringByReplacingOccurrencesOfString(target, withString: withString, options: NSStringCompareOptions.LiteralSearch, range: nil)
}
}
스위프트 3 :
extension String
{
func replace(target: String, withString: String) -> String
{
return self.replacingOccurrences(of: target, with: withString, options: NSString.CompareOptions.literal, range: nil)
}
}
스위프트 3, 스위프트 4, 스위프트 5 솔루션
let exampleString = "Example string"
//Solution suggested above in Swift 3.0
let stringToArray = exampleString.components(separatedBy: " ")
let stringFromArray = stringToArray.joined(separator: "+")
//Swiftiest solution
let swiftyString = exampleString.replacingOccurrences(of: " ", with: "+")
이 확장명을 사용하고 있습니다 :
extension String {
func replaceCharacters(characters: String, toSeparator: String) -> String {
let characterSet = NSCharacterSet(charactersInString: characters)
let components = self.componentsSeparatedByCharactersInSet(characterSet)
let result = components.joinWithSeparator("")
return result
}
func wipeCharacters(characters: String) -> String {
return self.replaceCharacters(characters, toSeparator: "")
}
}
용법:
let token = "<34353 43434>"
token.replaceCharacters("< >", toString:"+")
기존의 가변 문자열을 수정하는 범주 :
extension String
{
mutating func replace(originalString:String, withString newString:String)
{
let replacedString = self.stringByReplacingOccurrencesOfString(originalString, withString: newString, options: nil, range: nil)
self = replacedString
}
}
사용하다:
name.replace(" ", withString: "+")
Ramis의 답변을 기반으로 한 Swift 3 솔루션 :
extension String {
func withReplacedCharacters(_ characters: String, by separator: String) -> String {
let characterSet = CharacterSet(charactersIn: characters)
return components(separatedBy: characterSet).joined(separator: separator)
}
}
Swift 3 명명 규칙에 따라 적절한 기능 이름을 생각해 보았습니다.
나에게 덜 일어났다. 나는 단지 (단어 나 문자)를 바꾸고 싶다. String
그래서 나는 Dictionary
extension String{
func replace(_ dictionary: [String: String]) -> String{
var result = String()
var i = -1
for (of , with): (String, String)in dictionary{
i += 1
if i<1{
result = self.replacingOccurrences(of: of, with: with)
}else{
result = result.replacingOccurrences(of: of, with: with)
}
}
return result
}
}
용법
let mobile = "+1 (800) 444-9999"
let dictionary = ["+": "00", " ": "", "(": "", ")": "", "-": ""]
let mobileResult = mobile.replace(dictionary)
print(mobileResult) // 001800444999
replace
Regex가 가장 유연하고 견고한 방법이라고 생각합니다.
var str = "This is my string"
let regex = try! NSRegularExpression(pattern: " ", options: [])
let output = regex.stringByReplacingMatchesInString(
str,
options: [],
range: NSRange(location: 0, length: str.characters.count),
withTemplate: "+"
)
// output: "This+is+my+string"
스위프트 확장 :
extension String {
func stringByReplacing(replaceStrings set: [String], with: String) -> String {
var stringObject = self
for string in set {
stringObject = self.stringByReplacingOccurrencesOfString(string, withString: with)
}
return stringObject
}
}
계속해서 사용하십시오 let replacedString = yorString.stringByReplacing(replaceStrings: [" ","?","."], with: "+")
함수의 속도는 거의 자랑스럽지 않지만 String
한 번에 여러 배열을 전달하여 둘 이상의 교체를 할 수 있습니다.
Xcode 11 • 스위프트 5.1
StringProtocol의 변경 방법은 replacingOccurrences
다음과 같이 구현할 수 있습니다.
extension RangeReplaceableCollection where Self: StringProtocol {
mutating func replaceOccurrences<Target: StringProtocol, Replacement: StringProtocol>(of target: Target, with replacement: Replacement, options: String.CompareOptions = [], range searchRange: Range<String.Index>? = nil) {
self = .init(replacingOccurrences(of: target, with: replacement, options: options, range: searchRange))
}
}
var name = "This is my string"
name.replaceOccurrences(of: " ", with: "+")
print(name) // "This+is+my+string\n"
Objective-C NSString
메소드 를 사용하지 않으려면 split
and를 사용하면됩니다 join
.
var string = "This is my string"
string = join("+", split(string, isSeparator: { $0 == " " }))
split(string, isSeparator: { $0 == " " })
문자열 배열 ( ["This", "is", "my", "string"]
)을 반환합니다 .
join
이러한 요소를와 결합 +
하여 원하는 출력을 얻습니다 "This+is+my+string"
.
여기에 제자리에서 발생하는 replace 메소드의 확장이 있습니다.이 메소드 String
는 불필요한 사본이 아니며 모든 것을 제자리에 수행합니다.
extension String {
mutating func replaceOccurrences<Target: StringProtocol, Replacement: StringProtocol>(of target: Target, with replacement: Replacement, options: String.CompareOptions = [], locale: Locale? = nil) {
var range: Range<Index>?
repeat {
range = self.range(of: target, options: options, range: range.map { self.index($0.lowerBound, offsetBy: replacement.count)..<self.endIndex }, locale: locale)
if let range = range {
self.replaceSubrange(range, with: replacement)
}
} while range != nil
}
}
(메소드 서명은 내장 메소드의 서명을 모방합니다 String.replacingOccurrences()
)
다음과 같은 방식으로 사용할 수 있습니다.
var string = "this is a string"
string.replaceOccurrences(of: " ", with: "_")
print(string) // "this_is_a_string"