parse int from array of strings code example
Example 1: javascript Convert an array of strings to numbers
const toNumbers = arr => arr.map(Number);
toNumbers(['1', '2', '3','4']);
Example 2: java convert string to int array
import java.util.Arrays;
public class StringToIntegerArray {
public static void main(String args[]) {
String [] str = {"123", "345", "437", "894"};
int size = str.length;
int [] arr = new int [size];
for(int i=0; i<size; i++) {
arr[i] = Integer.parseInt(str[i]);
}
System.out.println(Arrays.toString(arr));
}
}