Inserts a new character at the specified position.
SDK
- Xcode 10.0+
Framework
- Swift Standard Library
Declaration
Parameters
newElement
The new character to insert into the string.
i
A valid index of the string. If
i
is equal to the string’s end index, this methods appendsnew
to the string.Element
Discussion
Calling this method invalidates any existing indices for use with this string.
Complexity: O(n), where n is the length of the string.