我正在寻找字计数器解决方案,其中字计数器重复降价语法。
降价语法示例
# h1 title
## h2 subtitle
Paragraph
- A list
- List
我找到了http://sachaschmid.ch/Countable/,但它将“#”视为一个单词。
问题
答案 0 :(得分:-1)
在JS中,您只需将split方法用于字符串中的计数单词:
"- A list".split(" ")
如果你想记下不需要的符号,你可以在使用'replace'和正则表达式进行拆分之前删除它们:
"- A list".replace(/^#+\s/g, '') // this will match any '#' character at the beginning of every line