输入一个字符串以回车符为结束,删除其中的所有的e字母(包括大小写),生成一个新的字符串,输出新生成

输入一个字符串以回车符为结束,删除其中的所有的e字母(包括大小写),生成一个新的字符串,输出新生成的字符串。【用数组】

private string GetConfigAppSetting(ref System.Configuration.Configuration config, string key)
{
try
{
if (config.AppSettings.Settings[key] != null)
{
return config.AppSettings.Settings[key].Value;
}

}
catch (Exception ex)
{
MessageBox.Show(ex.Message + ex.Source + ex.StackTrace);
}
return string.Empty;
}
温馨提示:答案为网友推荐,仅供参考
相似回答