Skip to content

Instantly share code, notes, and snippets.

@kkchu791
Created November 17, 2015 22:38
Show Gist options
  • Save kkchu791/a73a766887f85506d66c to your computer and use it in GitHub Desktop.
Save kkchu791/a73a766887f85506d66c to your computer and use it in GitHub Desktop.
s = 'key=value'
array = s.split("=")
s1 = array[0]
s2 = array[1]
puts s1
puts s2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment