Add tags

Add tags to the following comment
一撃必殺!
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
(require :cl-ppcre)
(defun remove-comment (str)
  (ppcre:regex-replace-all "/\\*(.+?)(\\*/|$)" str ""))

(remove-comment "AAA")                  ; => "AAA"
(remove-comment "AAA/*BBB*/")           ; => "AAA"
(remove-comment "AAA/*BBB")             ; => "AAA"
(remove-comment "AAA/*BBB*/CCC")        ; => "AAACCC"
(remove-comment "AAA/*BBB/*CCC*/DDD*/EEE") ; => "AAADDD*/EEE"
(remove-comment "AAA/a//*BB*B**/CCC")      ; => "AAA/a/CCC"

Add tags

The input will be splited to tags with space.

Index

Feed

Other

Link

Pathtraq

loading...