vote up 4 vote down star

I'm trying to split a sizeable string every four characters. This is how I'm trying to do it:

big_string.split(/..../)

This is yielding a nil array. As far as I can see, this should be working. It even does when I plug it into an online ruby regex test.

flag

Why would you split an integer using regex? How about just successively dividing by 10000 and storing the results in an array. – Kai Oct 27 at 3:52

3 Answers

vote up 15 vote down check

Try scan instead:

$ irb
>> "abcd1234beefcake".scan(/..../)
=> ["abcd", "1234", "beef", "cake"]

or

>> "abcd1234beefcake".scan(/.{4}/)
=> ["abcd", "1234", "beef", "cake"]

If the number of characters isn't divisible by 4, you can also grab the remaining characters:

>> "abcd1234beefcakexyz".scan(/.{1,4}/)
=> ["abcd", "1234", "beef", "cake", "xyz"]

(The {1,4} will greedily grab between 1 and 4 characters)

link|flag
yep, scan was it :) – deeb Oct 27 at 4:11
vote up 0 vote down

Whoops.

str = 'asdfasdfasdf'
c = 0; out = []; inum = 4
(str.length/inum).round.times do |s|
out.push(str[c,round(s*inum)])
c += inum
end
link|flag
vote up -1 vote down

Hmm, I don't know what Rubular is doing there and why - but

big_string.split(\....\)

does translate into

split the string at every 4-character-sequence

which should correctly result into something like

["", "", "", "abc"]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.