我已被輸入的數據在使用C#子html內容
編輯器視圖中的每個表前用佔位符TinyMCE的存儲的數據:
#data1
[html table1]
#data2
[html table2]
#data3
[html table3]
這被存儲在數據庫中包裹着在數據庫<p>
標籤。
我想根據傳遞參數剝離並獲取html表格。
string getTable(string placeholder)
{
string content = db.getData();
//placeholder = data1, return html table 1 substring data from content variable
return [html table1]; //html string
//placeholder = data2
return [html table2]; //html string
}
如何使用C#實現此目的?
你的答案給了我另一個想法,我可以使用IDS代替佔位符,讓我編輯你的正則表達式並測試它。 – 2011-06-16 15:22:15
任何想法爲什麼這個正則表達式無法匹配id \ s *上的表格?