static S unquoteIfNotContainingOtherQuotes(S s) { if (!startsAndEndsWith(s, '"')) ret s; if (contains(dropFirstAndLast(s), '"')) ret s; ret unquote(s); }