如何将 FileMaker Pro 中的分隔字段解析到新表中
我的 FileMaker Pro 数据库中有一个字段,其中包含分号分隔的数据,因此我想要做的是将这些数据分隔到一个新表中。如果有人能指出我正确的方向,那会很有帮助
I have a field in my FileMaker Pro database that contains semi-colon delimited data in it so what I want to do is separate that data into a new table. if someone could point me in the right direction that would be helpful
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是编写一个脚本,将文本分割成行(使用
GetValue()
),然后用分号分割每一行 (Substitute( $line, ";", "¶" )
,然后从结果列表中GetValue()
),最后将数据发布到另一个表中(转到布局、新记录、设置字段)。如果你愿意的话,可以画出整个剧本的草图。我会这样写:
One way would be to write a script that splits the text into lines (using
GetValue()
), then splits each line by semicolon (Substitute( $line, ";", "¶" )
, thenGetValue()
from the resulting list), and finally posts the data into the other table (Go to Layout, New Record, Set Field). Can sketch the whole script, if you want.I'd write it like that: