Decode
AustraliaPostCustomerInformationDecoder.Decode method
Decodificación del campo de información del cliente de la simbología de AustraliaPost. Se puede usar para diferentes interpretaciones de datos de la codificación NTable y CTable. Los datos se proporcionan como una fila de valores de barra: 0, 1, 2 o 3.
public string Decode(string customerInformationField)
Parámetro | Escribe | Descripción |
---|---|---|
customerInformationField | String | El campo de información del cliente codificado como fila de valores de barra sin procesar: 0, 1, 2 o 3 |
Valor_devuelto
la cadena de campo de información del cliente decodificada
Ejemplos
Este ejemplo muestra cómo decodificar datos con AustraliaPostCustomerInformationDecoder interface
[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();
}
Ver también
- interface AustraliaPostCustomerInformationDecoder
- espacio de nombres Aspose.BarCode.BarCodeRecognition
- asamblea Aspose.BarCode