我正在使用txt或htm文件。目前我正在通过char查找文档char,使用for循环,但我需要逐字查找文本,然后在char中查找单词char。 我怎么能这样做?
for (int i = 0; i < text.Length; i++)
{}
答案 0 :(得分:5)
一种简单的方法是使用不带参数的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)
{
// ...
}
}
}
}
我用StreamReader.ReadLine
来读取整行。
要解析HTML,我会使用像HtmlAgilityPack这样的强大库。
答案 1 :(得分:2)
你可以在空格上拆分字符串,但你必须处理标点符号和HTML标记(你说你正在使用txt和htm文件)。
string[] tokens = text.split(); // default for split() will split on white space
foreach(string tok in tokens)
{
// process tok string here
}
答案 2 :(得分:1)
这是我对StreamReader
的延迟扩展的实现。我们的想法是不将整个文件加载到内存中,特别是如果您的文件是一个长行。
public static string ReadWord(this StreamReader stream, Encoding encoding)
{
string word = "";
// read single character at a time building a word
// until reaching whitespace or (-1)
while(stream.Read()
.With(c => { // with each character . . .
// convert read bytes to char
var chr = encoding.GetChars(BitConverter.GetBytes(c)).First();
if (c == -1 || Char.IsWhiteSpace(chr))
return -1; //signal end of word
else
word = word + chr; //append the char to our word
return c;
}) > -1); // end while(stream.Read() if char returned is -1
return word;
}
public static T With<T>(this T obj, Func<T,T> f)
{
return f(obj);
}
简单地使用:
using (var s = File.OpenText(file))
{
while(!s.EndOfStream)
s.ReadWord(Encoding.Default).ToCharArray().DoSomething();
}
答案 3 :(得分:0)
使用text.Split(' ')
将空格分割成一个单词数组,然后迭代它。
所以
foreach(String word in text.Split(' '))
foreach(Char c in word)
Console.WriteLine(c);
答案 4 :(得分:0)
您可以拆分空格:
string[] words = text.split(' ')
将为您提供一系列单词,然后您可以迭代它们。
foreach(string word in words)
{
word // do something with each word
}
答案 5 :(得分:0)
我认为你可以使用拆分
var words = reader.ReadToEnd().Split(' ');
或使用
foreach(String words in text.Split(' '))
foreach(Char char in words )
答案 6 :(得分:0)
您可get all the text from some HTML使用HTMLAgilityPack。如果您认为这有点过分,请查看here。
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(text);
foreach(HtmlNode node in doc.DocumentNode.SelectNodes("//text()"))
{
var nodeText = node.InnerText;
}
然后,一旦定义了单词,就可以将每个节点的文本内容拆分为单词。
也许像this,
using HtmlAgilityPack;
static IEnumerable<string> WordsInHtml(string text)
{
var splitter = new Regex(@"[^\p{L}]*\p{Z}[^\p{L}]*");
HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(text);
foreach(HtmlNode node in doc.DocumentNode.SelectNodes("//text()"))
{
foreach(var word in splitter.Split(node.InnerText)
{
yield return word;
}
}
}
然后,检查每个单词中的字符
foreach(var word in WordsInHtml(text))
{
foreach(var c in word)
{
// a enumeration by word then char.
}
}
答案 7 :(得分:0)
什么是正则表达式?
using System;
using System.Linq;
using System.Text.RegularExpressions;
namespace ConsoleApplication58
{
class Program
{
static void Main()
{
string input =
@"I'm working with a txt or htm file. And currently I'm looking up the document char by char, using for loop, but I need to look up the text word by word, and then inside the word char by char. How can I do this?";
var list = from Match match in Regex.Matches(input, @"\b\S+\b")
select match.Value; //Get IEnumerable of words
foreach (string s in list)
Console.WriteLine(s); //doing something with it
Console.ReadKey();
}
}
}
它适用于任何分隔符,它是最快的方式。