Get the last character of a string without using array?
Solution 1:
Using last
to get the last Character
For Swift 4:
let str = "hello world๐"
let lastChar = str.last! // lastChar is "๐"
For Swift 2 and Swift 3:
let str = "hello world๐"
let lastChar = str.characters.last! // lastChar is "๐"
For Swift 1.2:
let str = "hello world๐"
let lastChar = last(str)! // lastChar is "๐"
Subscripting the String
to get the last Character
This works for Swift 3 and Swift 4:
let str = "hello world๐"
let lastChar = str[str.index(before: str.endIndex)] // lastChar is "๐"
And for Swift 1.2 and Swift 2:
let str = "hello world๐"
let lastChar = str[str.endIndex.predecessor()] // lastChar is "๐"
Solution 2:
Swift 4:
First some char Last some char
let strOSName = "mac operating system"
print(strOSName.prefix(3)) //first char. o/p: MAC
print(strOSName.suffix(6)) //last char. o/p: system
Solution 3:
"Without using Array on swift"
Here you go:
var text = "Lorem ipsum"
var lastChar = text.substringFromIndex(text.endIndex.predecessor())
Solution 4:
let text = "Muhammad Raza"
println("\(text[advance(text.endIndex, -1)])")
in Short !