js:
str.search(value) 用于查询字符串所在的位置
str.match(regexp) 在字符串内检索指定的值
str.replace(searchvalue/regep,newvalue) 在字符串中用一些字符替换另一些字符,或替换一个与正则表达式匹配的子串。
str.split(separator,limit) 用于把一个字符串分割成字符串数组。
i g m
php:
preg_match(pattern,string,matches) 匹配一次
preg_match_all(pattern,string,matches) 全部匹配
preg_replace($patterns, $replacements, $string);
implode(separator,arr) 把数组按分隔符 连接为字符串
explode(separator,string) 把字符串按分隔符 拆分成 数组