日期:2014-05-17 浏览次数:20974 次
string str="这是要处理的字符串这是要处理的字符串这是要处理的字符串”;
int index = str.IndexOf("这是");
str=str.Remove(index,2).Insert(index,"那是"));
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace StringReplace
{
class Program
{
static void Main(string[] args)
{
string txt = "这是要处理的字符串这是要处理的字符串这是要处理的字符串";
//声明一个词语
string str = "这是";
int index = txt.IndexOf(str);
int indexLast = txt.LastIndexOf(str);
while (true)
{
txt=txt.Remove(index,2).Insert(index,"那是");
index = txt.IndexOf(str);
if (index==indexLast)