首页 > 解决方案 > 使用数组查找 .txt 文件中的出现并将值存储在列表框中

问题描述

如何使用数组查找项目的频率并将它们存储在列表框中? 列表框

标签: c#arrays

解决方案


您需要阅读文件的文本并将其转换为字符串类型。然后使用

string[] array = yourString.Split(" ");

将文本拆分为单词数组和

int count = 0;
 for(int i = 0; i < array.Length; i++){
     if (array[i] == "pattern")
         count++;
}

推荐阅读