Joshua
Joshua

Reputation: 47

Dereferencing variables within ruby regex

I am having trouble figuring this one out. I need to be able to dereference an integer variable in ruby within a regex. So, for example, lets say I have a string called this_string, and I want to insert a space every 8 characters, this would work:

this_string.scan(/.{8}|.+/).join(" ")

But how do I do this every N characters using a regex, where N is an arbitrary integer?

Upvotes: 0

Views: 527

Answers (1)

DigitalRoss
DigitalRoss

Reputation: 146073

n = 3
s.scan(Regexp.new ".{#{n}}|.+").join ' '

Upvotes: 2

Related Questions