We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
000990 10 GROUP. 00000240 000990 15 PROP-A PIC 9(9).9(2). 00000241 000990 15 PROP-B PIC X. 00000254 000990 OCCURS 12. 00000242
Where the occurrence is of GROUP-A, not PROP-B
GROUP-A
PROP-B
and should produce
type stuff struct { Groups []Group `pic:"x,y,z"` } type Group struct { PropA float64 `pic:"x,y,z"` PropB string `pic:"x,y,z"` }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
Where the occurrence is of
GROUP-A
, notPROP-B
and should produce
The text was updated successfully, but these errors were encountered: