這個模板會將字串進行正規表示式匹配,並對正規表示式的匹配結果進行擷取組的輸出。如果正規表示式中沒有定義擷取組,則會輸出整個被正規表示式匹配到的字串。
若正規表示式沒有匹配到任何結果,則輸出結果為空字串。
- 這個模板使用的正規表示式是Lua的正規表示式。
{{str match|str= <!-- 欲進行匹配的字串 -->|ptn= <!-- 正規表示式,可以輸入以<nowiki>標籤包裹的維基代碼 -->
|match= 欲輸出擷取組的編號,預設為1|nomatch=沒有匹配到結果時輸出的預設內容,預設為空字串}}
{{str match|str=hello|ptn=%a(%a)%a}}
輸出:e
模板參數
此模板以參數行內格式為優先。
參數 | 描述 | 類型 | 狀態 |
---|
待查字串 | str | 要查詢/匹配正規表示式的字串
| 字串 | 非必填 |
---|
正規表示式 | ptn | 沒有描述
| 字串 | 非必填 |
---|
捕獲組編號 | match | 沒有描述
| 不明 | 非必填 |
---|
不匹配時 | nomatch | 不匹配時輸出的文字,預設為空
| 字串 | 非必填 |
---|
字串處理模板 |
---|
|
---|
根據數量處理 | | {{str right}} | 返回從左向右移除若干個字元後的字串 | {{str rightc}} | 返回從後向前指定數量的字串,如果字串為空則返回一個參數 | {{str sub old}} | To trim down to a specified number, starting at a given number from the left. | {{str sub new}} | Select a substr based on starting and ending index. | {{str index}} | 返回字串的第×個字元 |
|
|
---|
根據條件處理 | |
---|
專用於Wiki語法 | | {{WikiProjectbasename}} | Removes "WikiProject" from a pagename. | {{remove unranked}} | Removes the string "unranked_" from the left of a string (taxonomy). | {{ship prefix}} | Returns the length of a ship's name prefix, if listed (ship names). | {{title year}} | Returns the 4-digit year from a pagename, if any. |
|
|
---|
|
|
插入、替換、長度 |
---|
{{strloc insert}} | Inserts a string at character location strloc, or appends if strloc<=0. | {{loop}} | 特定次數重複字串。 | {{replace}} | 在字串中尋找並全部替換某字串後返回。 | {{str rep}} | 在字串中尋找並替換首次出現的某字串後返回。 | {{digits}} | 移除字串中不是數字(0~9)的字元。 |
|
|
|
|
|
|
Template:輔助模板