Method code for $string.rangeset()

[Turn off line numbering]
  1: arg string, start, len, new;
  2: 
  3: anticipate_assignment();
  4: return string.subrange(1, start - 1) + new + string.subrange(start + len);

// Created 27-Mar-1995 as a part of ColdCore, see: @help Credit

Tlon