这是我用于进行 piglatin 翻译的程序代码的一部分,因此我为我的句子创建了一个标点符号,但是当我编译它时,它会显示句子中的额外位置。所以我这样做:
private bool isPunctuation(string noo)
{
int pos = 1;
string punctuation = ",.!?";
pos = punctuation.IndexOf(' ');
while (pos >= 0)
{
pos = punctuation.IndexOf(' ', pos + 1);
//return false;
}
return true;
}
它仍然显示额外的空间。我需要在此代码中进行哪些更改?