Skip to content

Instantly share code, notes, and snippets.

@Zhong-z
Created October 18, 2018 23:44
Show Gist options
  • Save Zhong-z/4b1661fc5cf4dcb4b8d7fe07eb7f7071 to your computer and use it in GitHub Desktop.
Save Zhong-z/4b1661fc5cf4dcb4b8d7fe07eb7f7071 to your computer and use it in GitHub Desktop.
Split a string into chunks of specified size without breaking words
line = 'something very long that we need to split it ----llll aaa '
# the size/limit is 30
line.scan(/.{1,30}\b|.{1,30}/).map(&:strip)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment