我希望编写一些 c# 代码,在其中找到字符串中的特定单词并将其从字符串中删除而不删除整个字符串。
我试过了,但它不起作用:
if (openFile.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
// Read the files
for (int i = 0; i < openFile.FileNames.Count(); i++ )
{
if (openFile.FileNames[i].Contains("Unknown Album"))
{
openFile.FileNames[i] =
openFile.FileNames[i].Replace("Unknown Album", string.Empty);
}
}
}