Set-Cookieで取得したCookieから番号情報を取得しようとして&om=-&lv=1341532178340&xrs=
いますここに番号が必要です
これは私が思いついたものです:
string key = "";
ArrayList list = new ArrayList();
foreach (Cookie cookieValue in agent.LastResponse.Cookies)
{
list.Add(cookieValue);
}
String[] myArr = (String[])list.ToArray(typeof(string));
foreach (string i in myArr)
{
// Here we call Regex.Match.
Match match = Regex.Match(i, @"&lv=(.*)&xrs=",
RegexOptions.IgnoreCase);
// Here we check the Match instance.
if (match.Success)
{
// Finally, we get the Group value and display it.
key = match.Groups[1].Value;
}
}
agent.GetURL("http://site.com/" + key + ".php");
私が抱えている問題は、ArrayListをStringに変更できないことです(エラーは、「ソース配列の少なくとも1つの要素を宛先配列タイプにキャストできませんでした」です)。それを修正する方法またはそれを行うためのより良いコードを思い付くことができますか?
どうもありがとう!