在我的陣列我正在此分裂與陣列/斜線從調試器
「/奔馳/ 190級/ 1993 /」類=「canonicalLink」數據的QString的字符串=」 ?子=轎車「> 1993年
我希望之後的每個 '/' 分割文本,並得到它的String [],這是我努力
Queue<string> see = new Queue<string>(); //char[] a = {'\n '};
List<car_facts> car_fact_list = new List<car_facts>();
string[] car_detail;
foreach (string s in car)
{
MatchCollection match = Regex.Matches(s, @"<a href=(.+?)</a>",
RegexOptions.IgnoreCase);
// Here we check the Match instance.
foreach(Match mm in match)
{
// Finally, we get the Group value and display it.
string key = mm.Groups[1].Value;
//key.TrimStart('"');
//key.Trim('"');
key.Trim();
**car_detail = Regex.Split(key, "//");**//I tried with strin.Split as well and tried many combination of seperator ,
see.Enqueue(key);
}
}
在car_detail [0] I得到這個 「$ [鏈接]」> $ [標題]
從該字符串 「/奔馳/ 190級/ 1993 /」 類= 「canonicalLink」 數據的QString = 「?子=轎車」> 1993年
我想它已經,它不工作 – 2012-03-12 19:55:09
@RobustRob:這肯定會* *工作 - 我給一個簡短但完整的例子。請提供比「不工作」(原文如此)更多的信息。與您的預期相比,它做了什麼? – 2012-03-12 19:55:41
我得到相同的「$ [link]」> $ [標題],這裏是一個東西,我告訴你這些調試器中的值的結果,我正在使用VS 2010 WPF C#應用程序 – 2012-03-12 19:58:19