Guest User

Untitled

a guest
Feb 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. curdate = ""
  2.  
  3. data = File.open("fights.txt").read
  4.  
  5. data.gsub!(/^(Month|Name|Red|Gray).*\n/, '')
  6. data.gsub!(/\t/, '","')
  7. data.gsub!(/^/, '"').gsub!(/$/, '"')
  8. data.gsub!(/(\w+), (\w+)/, "\\2 \\1")
  9. data.gsub!(/(,"")*$/, '')
  10.  
  11. data.split("\n").each do |line|
  12. if line.include?(",")
  13. puts curdate + "," + line
  14. else
  15. curdate = line
  16. end
  17. end
Add Comment
Please, Sign In to add comment