- 2023-05-26查找某个字符在字符串中出现的次数
方法一:利用正则的match方法varstr="heleleoworled";varcount=(str.match(/le/g)||[]).length;console.log(count);方法二:先把要找的字符替换为空,然后用前一个字符串的长度减去后一个字符串的长度,除以要查找的字符串的长度。varstr1="heleleoworled";vartarget="l
- 2023-03-10swift 下标 subscript
类、结构体、和枚举可以定义下标。它可以作为访问集合,列表或序列成员元素的快捷方式。你可以使用下标通过索引值来设置或检索值而不需要为设置和检索分别使用实例方法。你可
- 2023-02-17bash exercise
3.5.2TildeExpansionecho"~"#onlybeginwithanunquotedcharacterisconsideredatilde-prefixecho~toucht.txtls~+/t.txt#usetheshell