游戏王残局简化版

Check-in [581a2aaf5d]
Login

Check-in [581a2aaf5d]

Overview
Comment:(/ω\)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 581a2aaf5d38528b1276273dfe78a72e7dcf2f412860f50ee9eadb13f6988dc7
User & Date: 顽雨沉风 on 2024-01-27 02:24:20
Other Links: manifest | tags
Context
2024-01-27
02:26
(/ω\) check-in: 596c321b0c user: 顽雨沉风 tags: trunk
02:24
(/ω\) check-in: 581a2aaf5d user: 顽雨沉风 tags: trunk
02:23
(/ω\) check-in: 49fd90cf4e user: 顽雨沉风 tags: trunk
Changes

Modified 残局文料/lib/程语_月_基类_文_内置库_加多.lua from [f99c2f64e2] to [faa57f08e9].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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




<
<
<
|
<







1
2
3
4



5

6
7
8
9
10
11
12
function string:lstrip()
  return self:gsub("^%s+", "")
  end
function string:rstrip()



  return self:gsub("%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