好了,所以我的代碼看起來有點像這樣某些字符選擇字符,直到在C#中的某些字符
// Returns the note of a favorite pown if it exists
string GetFavoriteNote(int id)
{
string notelist = Properties.Settings.Default.FavoriteNotesList;
// If there's a note, return it
if (notelist.Contains("'" + id + ":"))
{
// What to do here?
}
// If there's no note, return an empty string
else
{
return String.Empty;
}
}
現在它基本上是一個系統,其中每個ID用戶可以設置一個音符,它將被保存在這種格式:'id:note','id:note'
,
現在我要做的就是選擇一個音符不知何故並返回,所以我不得不從"'" + id + ":"
喜歡選擇直到「
如果有人知道如何做到這一點,請幫幫我。 感謝
您可以按','拆分,然後按':'拆分,然後您就可以得到筆記。或者你可以使用正則表達式。 – arunes 2012-03-08 09:16:40
你想要整個筆記結構(id = text)還是僅僅是筆記的文本部分? – 2012-03-08 09:29:47