swift 在Swift中反转字符串的几种方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 在Swift中反转字符串的几种方法相关的知识,希望对你有一定的参考价值。

let word = "abcdefg"

//Using swift lib
String(word.characters.reverse()) //"gfedcba"

//Using char array and insert
func reverseString(wordToReverse: String) -> String {
    guard wordToReverse.characters.count > 1 else {
        return wordToReverse
    }

    var reversedWord = [Character]()
    
    for char in wordToReverse.characters {
        reversedWord.insert(char, atIndex: 0)
    }
    return String(reversedWord)
}
assert(reverseString(word) == "gfedcba")

//Swap in-place, using char array
func reverseString2(wordToReverse: String) -> String {
    guard wordToReverse.characters.count > 1 else {
        return wordToReverse
    }
    
    var newWord = Array(wordToReverse.characters)
    let maxIndex = newWord.count - 1
    
    for i in 0...maxIndex {
        if i > maxIndex - i {
            break
        }
        (newWord[i], newWord[maxIndex - i]) = (newWord[maxIndex - i], newWord[i])
    }
    return String(newWord)
}

assert(reverseString2(word) == "gfedcba")

以上是关于swift 在Swift中反转字符串的几种方法的主要内容,如果未能解决你的问题,请参考以下文章

Python实现字符串反转的几种方法

Objective-C和Swift实现单例的几种方式

python 字符串反转的几种方法

Swift中关于集合计算的几种函数记录(intersectsymmetricDifferenceunionsubtract)

python 实现字符串反转的几种方法

Swift学习笔记——闭包的几种形式