位运算中 +n 和 (n) 有什么区别?
我发现两个参数定义如下:
&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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 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)
这些不是位操作。 +n 指定字符串偏移量,(n) 指定长度。
它们也可以彼此独立使用,因此您可以仅使用 +n 或仅使用 (n)。
例如:
会输出“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:
would output 'llo', for example.