To capitalize the last letter of a string in Swift, you can use the following code:
main.swift161 chars6 lines
Explanation:
myString
with the value you want to manipulate.last
property, which returns an optional Character
.??
) to provide a default value of an empty string in case the last character is nil.uppercased()
method to capitalize the last character.removeLast()
method.append()
method.This code will output: "examplE"
gistlibby LogSnag