Method code for $string.explode_list()

[Turn on line numbering]
arg str;

if ("," in str || " and " in str)
    return str.explode_english_list();
else
    return str.explode();

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

Tlon