1

有人可以指向一个文档,其中描述了 MT 消息字段的格式规则吗?

例如,我想知道以下代码段的含义。

:4!c//3!a/3!a/15d

4

2 回答 2

6

这在 MT“一般信息”文档中有所描述。您可以在此处找到本文档的 2017 版。具体来说,查看第 6.1 节的解释。

如何阅读:4!c//3!a/3!a/15d :

  • 第一的 :
  • 然后是 4 个强制性 c
  • 然后 //
  • 然后 3 强制性 a
  • 然后 /
  • 然后 3 强制性 a
  • 然后 /
  • 然后最多 15 天

regex中字符类型的简要概述:

  • c 是 [A-Z0-9]
  • a 是 [AZ]
  • d 是 \d+,\d*
于 2010-07-22T06:23:22.140 回答
0

如何阅读:4!c//3!a/3!a/15d:

first :
then 4!c = must be 4 character "c"
then // is an empty field.
then 3!a = must be 3 character "a"
then /
then 3!a = must be 3 character "a"
then /
then maximum 15d is max 15 character include decimal

正则表达式中字符类型的简要概述:

c is [A-Z0-9]
a is [A-Z]
d is (0-9) max 15 character include decimal

例如:您将填写价格字段 (90a)

:90B::4!c//4!c/3!a15d

然后你可以填写 = :90B::DEAL//ACTU/EUR1000,5

于 2014-08-06T05:21:58.193 回答