Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagelua
local LanguageMapSexMap = codemap.map({F='Female',  M='male', W='Female', U='Unknown'},'other')

-- Example: mapping an HL7 message
PID[8][1] = LanguageMapSexMap[PID[8][1]] -- maps to 'Female'

...