Method: String#tr_s!
- Defined in:
- string.c
#tr_s!(from_str, to_str) ⇒ String?
Performs String#tr_s processing on str in place, returning str, or nil if no changes were made.
3404 3405 3406 |
# File 'string.c', line 3404 static VALUE rb_str_tr_s_bang(str, src, repl) VALUE str, src, repl; |