79775873

Date: 2025-09-26 11:52:18
Score: 0.5
Natty:
Report link
" In Vim, replace every comma with a newline
" %s  -> apply substitution to the whole file
" ,   -> the pattern to match (comma)
" \r  -> replacement, inserts a real newline
" g   -> global flag, replace all occurrences in each line
:%s/,/\r/g
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ALLAH ALLAH