method
tr_s!
ruby latest stable - Class:
String
tr_s!(p1, p2)public
Performs String#tr_s processing on str in place, returning str, or nil if no changes were made.
static VALUE
rb_str_tr_s_bang(VALUE str, VALUE src, VALUE repl)
{
return tr_trans(str, src, repl, 1);
}