Tagged Questions
1
vote
3answers
144 views
Right way to extract multiple values from string using regex in ruby 1.8
I'm relatively new to ruby and I'm trying to figure out the "ruby" way of extracting multiple values from a string, based on grouping in regexes. I'm using ruby 1.8 (so I don't think I have named ...
3
votes
1answer
109 views
Using string[range]=new_val while respecting UTF8 in Ruby 1.8.7
I have code like
text[from..to] = text_insertion
The problem is that from and to are given counting UTF8 encoded characters as one char while the code above counts byte-wise in Ruby 1.8.7
I have ...