1.indexOf() – 返回字符串中一个字符第一处出现的索引,接收2个参数:要查找的字符,从哪个位置开始查找:.lastIndexOf()--返回字符串中某一个字符最后一次出现的索引值. 如果没有匹配项,返回 -1 . 找到字符串中某一字符串出现的所有位置: var str = "abocdoefo"; function index(ele,attr){ var index = -1,arr=[]; do{ index = ele.indexOf(attr,index+1); ar…
using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; using System.Threading; using CS = System.Console; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { CS.Foregroun…
salve复制线程停止,尝试start slave 时报ERROR 1872错误mysql> system perror 1872 MySQL error code 1872 (ER_SLAVE_RLI_INIT_REPOSITORY): Slave failed to initialize relay log info structure from the repository解决过程1.看样子是找不到中继日志的仓库,但是查看变量relay log的位置是设置了的mysql> show va…