Logo

Programming-Idioms

Extract the integer value i from its string representation s (in radix 10)
New implementation

Be concise.

Be useful.

All contributions dictatorially edited by webmasters to match personal tastes.

Please do not paste any copyright violating material.

Please try to avoid dependencies to third-party libraries and frameworks.

Other implementations
I : Integer := Integer'Value (s);
#include <stdlib.h>
i = (int)strtol(s, (char **)NULL, 10);
#include <stdlib.h>
int i = atoi(s);
(def i (Integer. s))
(def i (Integer/parseInt s))
#include <string>
int i = std::stoi(s);
std::string s("123");
int i;
std::from_chars(s.data(), s.data() + s.size(), i, 10);
#include <cstdlib>
int i = std::atoi(s);
#include <string>
#include <sstream>
std::stringstream ss(str);
int i;
ss >> i;
long i = Convert.ToInt64(s);
int i = int.Parse(s);
import std.conv;
auto i = s.to!int;
var i = int.parse(s);
i = String.to_integer(s)
I = list_to_integer(S).
read (unit=s,fmt=*) i
import "strconv"
i, err  := strconv.Atoi(s) 
import "strconv"
i, err := strconv.ParseInt(s, 10, 0)
Integer i = s.toInteger()
let i = read s :: Integer
const i = +s
const i = Number(s);
let i = parseInt(s, 10)
Integer i = Integer.valueOf(s, 10);
int i = Integer.parseInt(s);
int i = new Integer(s).intValue();
val i = s.toIntOrNull()
val i = s.toInt()
(setf i (parse-integer s))
i = tonumber(s)
@import Foundation;
int i=s.intValue
$i = intval($s, 10);
uses SysUtils;
i := StrToInt(S);
my $i = $s + 0;
i = int(s)
i = s.to_i
let i = s.parse::<i32>().unwrap();
let i = match s.parse::<i32>() {
  Ok(i) => i,
  Err(_e) => -1,
};
let i: i32 = s.parse().unwrap_or(0);
s.toInt
(define i (string->number s))
i := s asInteger.
Dim myint As Integer = CInt(("123"))