次の文字列のいずれかがあるとします。
"Hello, I'm a String... This is a Stackoverflowquestion!! Here is a Date: 16.03.2013, 02:35 and yeah, plain text blah blah..-."
"This the other string! :) 22.11.2012. Its a Date you see"
"Here we have 2 Dates, 23.12.2012 and 14.07.2011"
文字列からこれらの日付を取得するための最良かつ最速の方法は何DateTime
ですか?
(文字列の最初の発生日のみ)
望ましいリターン:
String 1: 16.03.2013 (as a DateTime)
String 2: 22.11.2012 (" ")
String 3: 23.12.2012 (" ")
したがって、次のようなメソッドを呼び出します。
DateTime date1 = GetFirstDateFromString(string1);