2013-05-29 198 views
2

我需要知道如何在c#中使用$ no = ereg_replace(" .*", "", $command[$i]);等價物,我在模式匹配中很新手,任何人都可以讓我知道c#中模式匹配的例子嗎?ereg_replace等效於C#

回答

1

也許你可以使用正則表達式。

在這個例子中,我們想要刪除字符串中的所有HTML標籤。

string newDescription = Regex.Replace("hello how are <b>you</b>", "<[^>]*>", string.Empty); 

newDescription現在有「你好你怎麼樣」

+0

天哪,我認爲這將是矯枉過正。 'String.Replace'應該更簡單。 – Tim

+0

他問一個模式,如果是簡單模式確定,他應該使用替換。 – mpacheco

+0

@mpacheco你能告訴我這個函數做了什麼嗎? ereg_replace(「。*」,「」,... – Aemz