import sys; sys.path.insert(0,"/app")
from scripts import fix_lab_formatting as F
S = ("Initial laboratory studies include the following: Complete blood cell count, within normal limits; "
     "Sodium, 139 mEq/L (139 mmol/L); Potassium, 3.5 mEq/L (3.5 mmol/L); "
     "White blood cell count, 3,500/µL (3.5 × 10⁹/L); Hemoglobin, 13.5 g/dL (135 g/L); "
     "Chloride, 105 mEq/L (105 mmol/L); Phosphorus, 1.8 mg/dL (0.58 mmol/L). "
     "Of the following, you are MOST likely to recommend")
for m in F._ITEM.finditer(S):
    print(repr(m.group("name")), "|", repr(m.group("value")), "|", repr(m.group("paren")), "->", F._accept(m))
