Decode

AustraliaPostCustomerInformationDecoder.Decode method

AustraliaPost 기호에서 고객 정보 필드를 디코딩합니다. NTable 및 CTable 인코딩과 다른 데이터 해석에 사용할 수 있습니다. 데이터는 막대 값의 행으로 제공됩니다: 0, 1, 2 또는 3.

public string Decode(string customerInformationField)
모수유형설명
customerInformationFieldString원시 막대 값의 행으로 인코딩된 고객 정보 필드: 0, 1, 2 또는 3

반환 값

디코딩된 고객 정보 필드 문자열

이 샘플은 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();
}

또한보십시오