你能解释一下如何在 TMemo 中计算单词并在 TLbet 或 TEdit 中显示结果吗?是否可以?另外我想知道如何计算相似词(重复词)的数量。谢谢你。PS:我怎样才能找到文本中的单词密度?例如:单词“dog”在文本中出现了 3 次。文本的字数是100。因此“狗”这个词的密度是3%。(3/100 * 100%)。
问问题
1166 次
1 回答
11
对于第一部分 ( uses Character
),
function CountWordsInMemo(AMemo: TMemo): integer;
var
i: Integer;
IsWhite, IsWhiteOld: boolean;
txt: string;
begin
txt := AMemo.Text;
IsWhiteOld := true;
result := 0;
for i := 1 to length(txt) do
begin
IsWhite := IsWhiteSpace(txt[i]);
if IsWhiteOld and not IsWhite then
inc(result);
IsWhiteOld := IsWhite;
end;
end;
对于第二部分,
function OccurrencesOfWordInMemo(AMemo: TMemo; const AWord: string): integer;
var
LastPos: integer;
len: integer;
txt: string;
begin
txt := AMemo.Text;
result := 0;
LastPos := 0;
len := Length(AWord);
repeat
LastPos := PosEx(AWord, txt, LastPos + 1);
if (LastPos > 0) and
((LastPos = 1) or not IsLetter(txt[LastPos-1])) and
((LastPos + len - 1 = length(txt)) or not IsLetter(txt[LastPos+len])) then
inc(result);
until LastPos = 0;
end;
function DensityOfWordInMemo(AMemo: TMemo; const AWord: string): real;
begin
result := OccurrencesOfWordInMemo(AMemo, AWord) / CountWordsInMemo(AMemo);
end;
于 2011-12-03T22:46:08.673 回答