有人可以指向一个文档,其中描述了 MT 消息字段的格式规则吗?
例如,我想知道以下代码段的含义。
:4!c//3!a/3!a/15d
如何阅读: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