Is there any algorithm which can parse or decode the String results obtained from BarCode Scanner using Zxing?
I want to extract Lot number or serial number from the scanned result. Is there any standard algorithm to do so?
I currently use,
String lotNumber=scanResults.substring(24,26);
if (lotNumber.equalsIgnoreCase("10")){
System.out.println("Lot numberrrrrrrrrrr " + a.substring(26,a.length()));
}
Thanks
Sneha