How To Turn A String To Int Code Example

Snippet 1

  int result = Integer.parseInt(number); 

Snippet 2

  // You will receive an error if there are non-numeric characters in the String.
String num = "5";
int i = Integer.parseInt(num); 

Copyright © Code Fetcher 2020

 

 

Published

Leave a comment

Your email address will not be published. Required fields are marked *