Xah Talk Show 2022-11-01 WolframLang Coding, Count Words in Arabian Nights and Alice in Wonderland

Xah Talk Show 2022-11-01 WolframLang Coding, Count Words in Arabian Nights and Alice in Wonderland
xfiles = FileNames["*html", "c:/Users/xah/web/xahlee_info/"];
f = Function[x,
   WordCounts[
    StringReplace[
     ReadString[x], {RegularExpression["<[^>]+>"] -> ""}], 2]];
xHashtables = Map[f, xfiles];
xWordCount = Merge[xHashtables, Total];
Take[ ReverseSort[xWordCount] , 100 ]

xfiles = FileNames["*html", "C:/Users/xah/web/xahlee_org/wordy/alice/"];
f = Function[x,
   WordCounts[
    StringReplace[
     ReadString[x], {RegularExpression["<[^>]+>"] -> ""}], 2]];
xHashtables = Map[f, xfiles];
xWordCount = Merge[xHashtables, Total];
Take[ ReverseSort[xWordCount] , 100 ]