Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 284 Bytes

File metadata and controls

6 lines (6 loc) · 284 Bytes

Parser

  1. Replace every space inside of a string with a null character. Regex: (".*") to capture a string.
  2. Split text by newline
  3. Split each line by space: \s+
  4. Replace every null character with a space and written \n with an actual newline.
  5. Remove any blank lines