ASP数组拆分。求大神帮助详解?

如有一个表名:t_biao 字段power,有一组数据:|8|5|22|10|7|6|4|9|17|20|

把它拆分出来,显示成这样的格式:


8
5
22
10
7
6
4
9
17
20

如何分割符号“|”,程序该怎么写???请大神不悋赐教

 string s = "|8|5|22|10|7|6|4|9|17|20|";
Response.WriteLine(s.Trim('|').Replace("|", "<br />"));

string s = "|8|5|22|10|7|6|4|9|17|20|";
Response.WriteLine(s.Tri m('|').R eplace("|", "
"));