You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, thanks for contributing this package. Super helpful.
While using the ParseQuery method, I found myself doing the following:
for i, _ := range m.Segments("OBR") {
OBRElementQuery, _ := hl7.ParseQuery(fmt.Sprintf("OBR(%d)-3", i + 1))
OBRElement := OBRElementQuery.GetString(m)
}
I define/parse all of my other queries independent of the message but because the number of OBR segements varies I have to parse the query for each OBR segment of each message. Is there a better way to do this?
The text was updated successfully, but these errors were encountered:
Hi,
First off, thanks for contributing this package. Super helpful.
While using the ParseQuery method, I found myself doing the following:
I define/parse all of my other queries independent of the message but because the number of OBR segements varies I have to parse the query for each OBR segment of each message. Is there a better way to do this?
The text was updated successfully, but these errors were encountered: