每次满足特定条件时将字符串拆分为新记录

发布于 2025-01-07 10:28:57 字数 121 浏览 0 评论 0原文

我使用 SQL 中的字符串文件在水晶报表中创建报表。问题是水晶报表不解释分页符。是否有一个分割函数可以通过字符串进行搜索,并且每次所有者都没有。发生时,将字符串拆分成新记录吗?字符串很大(超过 1000 个字符)。 提前致谢。

I use a string file in SQL to create a report in crystal reports. The problem is that crystal reports is not interpreting the page breaks. Is there a split function that can search through a string and every time Owner no. occurs, split the string into a new record? The string are large,(above 1000 characters).
Thanks in advance.

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

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

发布评论

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

评论(1

ま昔日黯然 2025-01-14 10:28:57

放置在详细信息部分:

//{@block 0}
Local Stringvar CRLF := Chr(10)+Chr(13);

If Instr({table.field}, CRLF) Then
  Split({table.field}, CRLF)[1]
Else
  {table.field}

将此公式插入其自己的详细信息部分;标记部分“空白时隐藏”和“之前的新页面”:

//{@block 1}
Local Stringvar CRLF := Chr(10)+Chr(13);

If Instr({table.field}, CRLF) Then
  Split({table.field}, CRLF)[2]

Place in Details section:

//{@block 0}
Local Stringvar CRLF := Chr(10)+Chr(13);

If Instr({table.field}, CRLF) Then
  Split({table.field}, CRLF)[1]
Else
  {table.field}

insert this formula its own Details section; mark section 'suppress when blank' and 'new page before':

//{@block 1}
Local Stringvar CRLF := Chr(10)+Chr(13);

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