0
我想弄清楚最好的方式之前獲取/字符在字符串中的所有內容。以下是一些示例字符串。得到一切後斜槓c#
var url = dr.FindElements(By.XPath("//*[@id=\"u_0_3\"]/div/h1/a"));
foreach (var item in url)
{
if (item.GetAttribute("href").ToString().Contains("https://www.facebook.com/"))
{
listBox4.Items.Add("here");
}
}
的href是這樣=「http://facebook.com/xxx」 希望xxx,它是用戶名想要得到它獨自在我的列表框中沒有網址的
'項目= I替換(@「http://facebook.com/」,string.Empty);'? – oerkelens
不要使用字符串,創建一個'Uri'實例並在那裏使用方法/屬性。 – Lee
簡單而髒的方式是'string [] strArray = strString.Split('/'); strWantedString = strArray [strArray.Count];' – Gopi