Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 237 Bytes

convert_string_to_integer.md

File metadata and controls

22 lines (17 loc) · 237 Bytes

Convert string to integer

Java - Android

result = Integer.parseInt(string);

Javascript

result = parseInt(string);

Objective-C

result = [string intValue];

PHP

$result = (int)$string;