Difference between revisions of "Translations:Manual:Introduction/194/zh-CN"
Jump to navigation
Jump to search
(Updating translation from gettext import) |
(Updating translation from gettext import) |
||
Line 1: | Line 1: | ||
− | ''' | + | '''Mud服务端输出''': ''unlock northwest with steel key'' |
− | ''' | + | '''匹配的正则表达式''': '''^un (\w+) (.*)$''' |
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
send("unlock " .. matches[2] .. " with " .. matches[3] ) | send("unlock " .. matches[2] .. " with " .. matches[3] ) | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 01:02, 16 December 2021
Mud服务端输出: unlock northwest with steel key 匹配的正则表达式: ^un (\w+) (.*)$
send("unlock " .. matches[2] .. " with " .. matches[3] )