root xmlns ="tempuri/"欢迎使用 这是我的默认字符串....在此我要删除以下内容 xmlns ="tempuri/" 该怎么做?? 在此帮助我
root xmlns="tempuri/" welcome to this is my default string....In this i want remove the following content xmlns="tempuri/" how to do that??? help me in this
推荐答案使用正则表达式: Use a regex: public static Regex regex = new Regex("xmlns=\\\"(?>[^\"]+)*\\\"", RegexOptions.IgnoreCase | RegexOptions.CultureInvariant | RegexOptions.IgnorePatternWhitespace | RegexOptions.Compiled ); string result = regex.Replace(InputText,"");
获取 Expresso [ ^ ]-它是免费的,它检查并生成正则表达式.
Get a copy of Expresso [^] - it''s free, and it examines and generates Regular expressions.
msdn.microsoft/en-us/library/ms228599.aspx [ ^ ]