nitc :: TString :: without_quotes
# Returns the content of this node without both of the surrounding " fun without_quotes: String do assert text.length >= 2 return text.substring(1, text.length-2) end