ori.txt => 我是高雄人,我有兩位好同學;分別做不同的研究主題。
(1)開啟ori.txt,讀取檔案內容;
(2)去掉標點符號,e.g.","、";"、"。"(斷句), then 開啟新檔out.txt,寫入:
我是高雄人
我有兩位好同學
分別做不同的研究主題
(3)進一步斷字,then 接著寫入
我
是
高
雄
人
我
有
兩
位
好
同
學
分
別
做
不
同
的
研
究
主
題
(4)關檔,ori.txt and out.txt。
out.txt的內容:
我在高醫就學
我有兩位好同學
分別做不同的研究主題
我
在
高
醫
就
學
我
有
兩
位
好
同
學
分
別
做
不
同
的
研
究
主
題
你需要知道下列技巧:
請參考下面範例:
<pre class="c" name="code">
string s = "我是高雄人,我有兩位好同學;分別做不同的研究主題。";
string[] lines = s.Split(new char[] { ',', ';', '。' });
for (int i = 0; i < lines.Length; i++)
{
Console.WriteLine(lines[i]);
}
for (int i = 0; i < lines.Length; i++)
{
for (int j = 0; j < lines[i].Length; j++)
{
Console.WriteLine(lines[i][j]);
}
Console.WriteLine();
}
這不是完整的答案,答案靠自己才會成長,加油吧!