Decode

AustraliaPostCustomerInformationDecoder.Decode method

从澳大利亚邮政符号系统中解码客户信息字段。 可用于来自 NTable 和 CTable 编码的不同数据解释。 数据以一行条形值的形式提供:0、1、2 或 3。

public string Decode(string customerInformationField)
范围类型描述
customerInformationFieldString编码为原始条形值行的客户信息字段:0、1、2 或 3

返回值

解码的客户信息字段字符串

例子

此示例显示如何使用 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();
}

也可以看看