位运算中 +n 和 (n) 有什么区别?

发布于 2024-11-08 20:07:19 字数 163 浏览 0 评论 0原文

我发现两个参数定义如下:

&TM_PERIOD+4&/&TM_PERIOD(4)&

它将数据从数据库传递到表单。

如果数据格式为 DDMMYYYY 这两个参数之间有什么区别?

I've found two parameters defined like these:

&TM_PERIOD+4&/&TM_PERIOD(4)&

It's to pass data from a database to a form.

If the format of the data would be DDMMYYYY what are differences between those two parameters?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幼儿园老大 2024-11-15 20:07:19

如果 TM_PRIOD 的形式为 DDMMYYYY,则

TM_PERIOD(4) 等于 DDMM
TM_PERIOD+4 等于 YYYY

(4) 表示 4 个字符
+4 表示第 4 个字符之后

TM_PERIOD+1(2) = DM
(第一个字符后 2 个字符)

if TM_PRIOD is in form of DDMMYYYY then

TM_PERIOD(4) equals DDMM
TM_PERIOD+4 equals YYYY

the (4) means 4 characters
the +4 means after the 4th character

TM_PERIOD+1(2) = DM
(2 characters after the first)

情徒 2024-11-15 20:07:19

这些不是位操作。 +n 指定字符串偏移量,(n) 指定长度。

它们也可以彼此独立使用,因此您可以仅使用 +n 或仅使用 (n)。

例如:

data: lv_text(20) type c.
lv_text = "Hello".
write: / lv_text+2(3).

会输出“llo”。

These are not bit operations. +n specifies a string offset and (n) specifies the length.

They can be used independently of each other as well, so you can use just +n or just (n).

So:

data: lv_text(20) type c.
lv_text = "Hello".
write: / lv_text+2(3).

would output 'llo', for example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文