For example I have some random string:
str = \"26723462345\"
And I want to split it in 2 parts after 6-th char. How to do this correctly?>
_, part1, part2 = str.partition /.{6}/
https://ruby-doc.org/core-1.9.3/String.html#method-i-partition