Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 acct_id,我需要再次使用根据 acct_id mod 1000 值分离数据将它们拆分为各种输出文件
请任何人建议我实现这一目标。
这是实现这一目标的一种方法
在您的重新格式化组件中,将以下代码放入“输出索引”部分
output_index_out :: output_index(in) = begin output_index_out :: if (in.data % 1000 == 0) 0 else if (in.data % 1000 == 1) 1 else if (in.data % 1000 == 2) 2 else 3; end;
以上示例代码支持 4 个输出端口,您可以将其扩展为所需的输出端口数量