15,021
edits
(→替代方案) |
(將每行文字的行頭加上逗號符號) |
||
| Line 91: | Line 91: | ||
參考資料: [http://stackoverflow.com/questions/150033/regular-expression-to-match-non-english-characters javascript - Regular expression to match non-english characters? - Stack Overflow] | 參考資料: [http://stackoverflow.com/questions/150033/regular-expression-to-match-non-english-characters javascript - Regular expression to match non-english characters? - Stack Overflow] | ||
=== 將每行文字的行頭加上逗號符號 === | |||
使用notepad++軟體 | |||
# 選單: 尋找 -> 取代 | |||
# 搜尋模式: 勾選「用類型表示」 | |||
## 尋找目標: {{kbd | key=(.*)}} 或者是 {{kbd | key=^(.*)$}} | |||
## 取代成: {{kbd | key=,\1}} 或者是 {{kbd | key=,$1}}。 | |||
參考資料: [http://stackoverflow.com/questions/8413237/notepad-regex-search-replace-how-to-append-and-prepend-a-character-at-start-a Notepad++ RegEx Search/Replace: How to append and prepend a character at start and end of each file line? - Stack Overflow] | |||
== syntax == | == syntax == | ||