1、find()
检测newstr是否包含在oldstr中,如果是返回开始的索引值,不是就返回-1
2、index()
跟find()方法一样,只不过如果newstr不在oldstr中会报一个异常,而不是输出-1
3、count()
返回newstr在start和end之间 在oldstr里面出现的次数
4、replace()
把oldstr中newstr1替换成newstr2,如果count指定,则替换不超过count次
检测newstr是否包含在oldstr中,如果是返回开始的索引值,不是就返回-1
跟find()方法一样,只不过如果newstr不在oldstr中会报一个异常,而不是输出-1
返回newstr在start和end之间 在oldstr里面出现的次数
把oldstr中newstr1替换成newstr2,如果count指定,则替换不超过count次