SWIFT MT字段格式规则

时间:2010-07-16 09:11:52

标签: documentation swift-mt

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

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

  

:!!! 4℃// 3/3 / 15D

2 个答案:

答案 0 :(得分:5)

这在MT'一般信息'文档中有所描述。您可以找到本文档的2017版here。具体来说,请参阅第6.1节以获得解释。

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

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

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

  • c是[A-Z0-9]
  • a是[A-Z]
  • d是\ d +,\ d *

答案 1 :(得分: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 ::图4c // 4 C / 3 a15d

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