功能:从字符串中移走指定的字符
str1:原始的字符串
str2:需要移走的指定字符
返回值:操作之后的字符串
例:
string s1 = "abscd";
s1 = Remove(s1,"s");
s1的结果为"abcd"