removing the first two characters in a string ruby code example
Example: ruby first letter string delete
asdf = "[12,23,987,43"
asdf[0] = ''
p asdf
# >> "12,23,987,43"
asdf = "[12,23,987,43"
asdf[0] = ''
p asdf
# >> "12,23,987,43"