文字列を分割することを学ぼうとしています。たとえば、文字列がありますAdams, John - 22.6.2001
。次の各情報を特定の文字列に分割する最も簡単な方法は何ですか? 名前、苗字、日付が必要です。
これは私が自分で試した解決策です:
string st = "Adams, John - 22.6.2001"
st = st.Trim(); // To replace all possible white spaces? But I don't know how can I cut each of details into string.