好き:
"Name: Daniel --- Phone Number: 3128623432 --- Age: 12 --- Occupation: Student"
「年齢」以降の入手方法は?数字だけ欲しいのですが。(彼の歳)
次の概念で完全なコードを試すことができますか?
string strAge;
string myString = "Name: Daniel --- Phone Number: 3128623432 --- Age: 12 --- Occupation: Student";
int posString = myString.IndexOf("Age: ");
if (posString >0)
{
strAge = myString.Substring(posString);
}
堅牢な方法は、いくつかの正規表現を取得することです:)しかし...
実際には、タイプの辞書として簡単に表すことができるデータがありますDictionary<string, string>
。
var s = "Name: Daniel --- Phone Number: 3128623432 --- Age: 12 --- Occupation: Student";
var dictionary = s.Split(new string[] { "---" }, StringSplitOptions.None)
.Select(x => x.Split(':'))
.ToDictionary(x => x[0].Trim(), x => x[1].Trim());
これで、入力文字列から任意の値を取得できます。
string occupation = dictionary["Occupation"];
int age = Int32.Parse(dictionary["Age"]);
この形式で年齢があるとしますAge: value
string st = "Name: Daniel --- Phone Number: 3128623432 --- Age: 12 --- Occupation: Student";
//Following Expression finds a match for a number value followed by `Age:`
System.Text.RegularExpressions.Match mt = System.Text.RegularExpressions.Regex.Match(st, @"Age\: \d+");
int age=0; string ans = "";
if(mt.ToString().Length>0)
{
ans = mt.ToString().Split(' ')[1]);
age = Convert.ToInt32(ans);
MessageBox.Show("Age = " + age);
}
else
MessageBox.Show("No Value found for age");
MessgeBox は、文字列値 (見つかった場合) を表示します。