---
Sorry, I was working with an older version of the source code. The package under "Downloads" is different than under "Source Code". The actual version works as expected.
---
Hi,
I had some issues with parsing the BODYSTRUCTURE, when its more complex.
Changing Line 31 in Expressions.cs from
```
public static readonly Regex BodyStructRex = new Regex(@"BODYSTRUCTURE (\(.+\))");
```
to
```
public static readonly Regex BodyStructRex = new Regex(@"FETCH \(.*BODYSTRUCTURE \((.*)\).*\)");
```
solved the problem.
Best regards,
Michael
Sorry, I was working with an older version of the source code. The package under "Downloads" is different than under "Source Code". The actual version works as expected.
---
Hi,
I had some issues with parsing the BODYSTRUCTURE, when its more complex.
Changing Line 31 in Expressions.cs from
```
public static readonly Regex BodyStructRex = new Regex(@"BODYSTRUCTURE (\(.+\))");
```
to
```
public static readonly Regex BodyStructRex = new Regex(@"FETCH \(.*BODYSTRUCTURE \((.*)\).*\)");
```
solved the problem.
Best regards,
Michael