Method code for $string.unquote()

[Turn off line numbering]
  1: arg str;
  2: 
  3: if (str && str[1] == "\"" && str[str.length()] == "\"")
  4:     return str.subrange(2, str.length() - 2);
  5: return str;

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

Tlon