Convert Int to String in Swift Convert Int to String in Swift swift swift

Convert Int to String in Swift


Converting Int to String:

let x : Int = 42var myString = String(x)

And the other way around - converting String to Int:

let myString : String = "42"let x: Int? = myString.toInt()if (x != nil) {    // Successfully converted String to Int}

Or if you're using Swift 2 or 3:

let x: Int? = Int(myString)


Check the Below Answer:

let x : Int = 45var stringValue = "\(x)"print(stringValue)


Here are 4 methods:

var x = 34var s = String(x)var ss = "\(x)"var sss = toString(x)var ssss = x.description

I can imagine that some people will have an issue with ss. But if you were looking to build a string containing other content then why not.