Decode
AustraliaPostCustomerInformationDecoder.Decode method
Decodifica campo informazioni cliente dalla simbologia AustraliaPost. Può essere utilizzato per diverse interpretazioni dei dati dalla codifica NTable e CTable. I dati sono forniti come una riga di valori della barra: 0, 1, 2 o 3.
public string Decode(string customerInformationField)
Parametro | Tipo | Descrizione |
---|---|---|
customerInformationField | String | Il campo delle informazioni sul cliente codificato come riga di valori della barra grezza: 0, 1, 2 o 3 |
Valore di ritorno
la stringa del campo informazioni cliente decodificata
Esempi
Questo esempio mostra come decodificare i dati con l’interfaccia AustraliaPostCustomerInformationDecoder
[C#]
string[] N_Table = { "00", "01", "02", "10", "11", "12", "20", "21", "22", "30" };
public string Decode(string customerInformationField)
{
StringBuilder bd = new StringBuilder();
for (int i = 0; customerInformationField.Length > i; i += 2)
{
if (customerInformationField.Length >= i + 2)
{
string tmp = customerInformationField.Substring(i, 2);
for (int j = 0; N_Table.Length > j; j++)
{
if (N_Table[j].Equals(tmp))
{
bd.Append(j);
break;
}
}
}
}
return bd.ToString();
}
Guarda anche
- interface AustraliaPostCustomerInformationDecoder
- spazio dei nomi Aspose.BarCode.BarCodeRecognition
- assemblea Aspose.BarCode