requires this class:
https://github.com/yotamarker/public-livinGrimoire/blob/master/livingrimoire%20start%20here/LivinGrimoire%20java/LivinGrimoire%20030123/LivinGrimoire%20core/RegexUtil.java
the code converts strings to integers or doubles
https://github.com/yotamarker/public-livinGrimoire/blob/master/livingrimoire%20start%20here/LivinGrimoire%20java/LivinGrimoire%20030123/LivinGrimoire%20core/RegexUtil.java
Code:
package AXJava;
import LivinGrimoire.*;
public class LGTypeConverter {
private RegexUtil r1 = new RegexUtil();
public int convertToInt(String v1){
String temp = r1.extractRegex(enumRegexGrimoire.integer, v1);
if (temp.isEmpty()) {return 0;}
return Integer.parseInt(temp);
}
public Double convertToDouble(String v1){
String temp = r1.extractRegex(enumRegexGrimoire.double_num, v1);
if (temp.isEmpty()) {return 0.0;}
return Double.parseDouble(temp);
}
}
the code converts strings to integers or doubles