我希望从简历中获取具体内容,例如姓名和年龄。如何用C#做到这一点。也许正则表达式?
答案 0 :(得分:0)
一种简单的方法是使用 string.Split 而不使用参数(用空格字符分割):
using (StreamReader sr = new StreamReader(path))
{
while (sr.Peek() >= 0)
{
string line = sr.ReadLine();
string[] words = line.Split();
foreach(string word in words)
{
foreach(Char c in word)
{
// ...
}
}
}
}
如果您有任何疑问,请与我们联系。