From: nobu@... Date: 2018-05-24T05:04:13+00:00 Subject: [ruby-core:87249] [Ruby trunk Feature#14783] String#chars_at / String#bytes_at Issue #14783 has been updated by nobu (Nobuyoshi Nakada). sos4nt (Stefan Sch����ler) wrote: > Because `String#[]` also returns a string in such case: It's a different, single argument case. I don't think that `values_at` should return same class as the receiver, as `Hash#values_at`. ---------------------------------------- Feature #14783: String#chars_at / String#bytes_at https://bugs.ruby-lang.org/issues/14783#change-72238 * Author: sos4nt (Stefan Sch����ler) * Status: Open * Priority: Normal * Assignee: * Target version: ---------------------------------------- I just wanted to extract characters at certain indices from a string and noticed that there's no `values_at` counterpart for `String`. I'd therefore like to propose two new `String` methods: * `chars_at(selector, ...) ��� new_str` * `bytes_at(selector, ...) ��� new_str` which work basically like [`Array#values_at`](http://ruby-doc.org/core/Array.html#method-i-values_at), e.g.: ```ruby string = 'hello, world!' string.chars_at(0, 5, 7, 12) #=> "h,w!" string.chars_at(0..4, 7..11) #=> "helloworld" ``` -- https://bugs.ruby-lang.org/ Unsubscribe: