游戏王残局简化版

Artifact [f99c2f64e2]
Login

Artifact [f99c2f64e2]

Artifact f99c2f64e2a2d393aed6983a12a99fc7fd7372a61b980a06e75b58ed4e506a4c:


function string:lstrip()
  return self:gsub("^%s+", "")
  end
function string:rstrip()
  if self == nil then
    return nil
    end
  local s = self:gsub("%s+$", "")
  return s
  end
function string:strip()
  return self:lstrip():rstrip()
  end
function string:startswith(text)
  local size = text:len()
  if self:sub(1, size) == text then
    return self
    end
  end
function string:endswith(text)
  if self:sub(-#text) == text then
    return self
    end
  end