Decimal to Double conversion in Swift
let someDouble = Double(truncating: someDecimal as NSNumber)
Decimal to Double conversion in Swift
let someDouble = Double(truncating: someDecimal as NSNumber)
string to double swift
let lessPrecisePI = Float("3.14")
let morePrecisePI = Double("3.1415926536")
let invalidNumber = Float("alphabet") // nil, not a valid number
//Unwrap the values to use them using if/let
if let cost = Double(textField.text!) {
print("The user entered a value price of (cost)")
} else {
print("Not a valid number: (textField.text!)")
}
//You can convert formatted numbers and currency using the NumberFormatter class.
let formatter = NumberFormatter()
formatter.locale = Locale.current // USA: Locale(identifier: "en_US")
formatter.numberStyle = .decimal
let number = formatter.number(from: "9,999.99")
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us