2> re:run("hello world","w.+d"). {match,[{6,5}]}
正则表达式,“w.+d”在位置 6 处匹配字符串“hello world”,共 5 个字符。
9> re:replace("10203040","([2-4]0)+","01",[{return,list}]). "1001"
进行替换,将“203040”替换为“01”。