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
Is there way to get all components of field using Terser , either as List or as single string
For example for patient TEST^^PATIENT^P
I am looking for API to return TEST^^PATIENT^P String completePatientName = terser.get("/.PID(0)-5(0)"); // should returnall components field . Currently it returns 1st component
OR
I am looking for API to return list of values "Test","","PATIENT","P" when I call some API on terser List<String> patientComponents = terser.get("/.PID(0)-5(0)"); // should returnall components field including empty components
Is there way to get all components of field using Terser , either as List or as single string
For example for patient TEST^^PATIENT^P
I am looking for API to return TEST^^PATIENT^P
String completePatientName = terser.get("/.PID(0)-5(0)"); // should return
all components field . Currently it returns 1st componentOR
I am looking for API to return list of values
"Test","","PATIENT","P"
when I call some API on terserList<String> patientComponents = terser.get("/.PID(0)-5(0)"); // should return
all components field including empty componentsThe text was updated successfully, but these errors were encountered: