Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove last character from string. Swift language

How can I remove last character from String variable using Swift? Can't find it in documentation.

Here is full example:

var expression = "45+22" expression = expression.substringToIndex(countElements(expression) - 1) 
like image 593
Konstantin Cherkasov Avatar asked Jun 09 '14 14:06

Konstantin Cherkasov


People also ask

How do you remove the last character of a string in Swift?

To remove last character of a String in Swift, call removeLast() method on this string. String. removeLast() method removes the last character from the String.

How do I remove the last character of a string?

The easiest way is to use the built-in substring() method of the String class. In order to remove the last character of a given String, we have to use two parameters: 0 as the starting index, and the index of the penultimate character.

How do you remove the first and last character of a string in Swift?

Swift String dropFirst() The dropFirst() method removes the first character of the string.

How do I get the length of a string in Swift?

Swift – String Length/Count To get the length of a String in Swift, use count property of the string. count property is an integer value representing the number of characters in this string.


1 Answers

Swift 4.0 (also Swift 5.0)

var str = "Hello, World"                           // "Hello, World" str.dropLast()                                     // "Hello, Worl" (non-modifying) str                                                // "Hello, World" String(str.dropLast())                             // "Hello, Worl"  str.remove(at: str.index(before: str.endIndex))    // "d" str                                                // "Hello, Worl" (modifying) 

Swift 3.0

The APIs have gotten a bit more swifty, and as a result the Foundation extension has changed a bit:

var name: String = "Dolphin" var truncated = name.substring(to: name.index(before: name.endIndex)) print(name)      // "Dolphin" print(truncated) // "Dolphi" 

Or the in-place version:

var name: String = "Dolphin" name.remove(at: name.index(before: name.endIndex)) print(name)      // "Dolphi" 

Thanks Zmey, Rob Allen!

Swift 2.0+ Way

There are a few ways to accomplish this:

Via the Foundation extension, despite not being part of the Swift library:

var name: String = "Dolphin" var truncated = name.substringToIndex(name.endIndex.predecessor()) print(name)      // "Dolphin" print(truncated) // "Dolphi" 

Using the removeRange() method (which alters the name):

var name: String = "Dolphin"     name.removeAtIndex(name.endIndex.predecessor()) print(name) // "Dolphi" 

Using the dropLast() function:

var name: String = "Dolphin" var truncated = String(name.characters.dropLast()) print(name)      // "Dolphin" print(truncated) // "Dolphi" 

Old String.Index (Xcode 6 Beta 4 +) Way

Since String types in Swift aim to provide excellent UTF-8 support, you can no longer access character indexes/ranges/substrings using Int types. Instead, you use String.Index:

let name: String = "Dolphin" let stringLength = count(name) // Since swift1.2 `countElements` became `count` let substringIndex = stringLength - 1 name.substringToIndex(advance(name.startIndex, substringIndex)) // "Dolphi" 

Alternatively (for a more practical, but less educational example) you can use endIndex:

let name: String = "Dolphin" name.substringToIndex(name.endIndex.predecessor()) // "Dolphi" 

Note: I found this to be a great starting point for understanding String.Index

Old (pre-Beta 4) Way

You can simply use the substringToIndex() function, providing it one less than the length of the String:

let name: String = "Dolphin" name.substringToIndex(countElements(name) - 1) // "Dolphi" 
like image 105
Craig Otis Avatar answered Oct 15 '22 19:10

Craig Otis