Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Casting string to int

  • int.parse
void main() {
    var a = 23;
    var b = 19;
    print(a + b);  // 42
    
    var d = "19";
    print( a + int.parse(d) ); // 42
}