How to reverse a string in Swift
In this tutorial, we are going to learn about how to reverse a string in Swift.
Reversing the string
To reverse a string in Swift, we can use the built-in `reversed() method.
Here is an example, that reverses the car
string:
let car = "tesla"
let reversedString = String(car.reversed())
print(reversedString)
Output:
alset
Reversing string using for loop
Similarly, we can also reverse a string using the for
loop in Swift.
let str = "how are you"
var reversedString = ""
// looping through each character
for char in str {
reversedString = "\(char)" + reversedString
}
print(reversedString)
Output:
uoy era woh