【C#】C#实现txt文件的读写、C#实现字符串统计

文章目录


一、要求描述

实现对一个输入字符串的字符数、字符出现的次数、字符出现的位置的统计。

并且能够写入txt文件保存,也可以加载这个保存的txt文件。

二、实现代码

csharp 复制代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace 字符串统计
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        string outputStr = ""; // 输出字符串
        private void btnCount_Click(object sender, EventArgs e)
        {
            string inputStr = rtbInput.Text; // 输入字符串
            outputStr = "";

            if (inputStr == string.Empty)
            {
                MessageBox.Show("输入字符串不能为空!");
                return;
            }

            // 获取字符串中每个字符出现的次数,指出字符所在的位置
            outputStr = CountCharInString(inputStr); // 调用函数
            rtbOutput.Text = outputStr; // 显示统计结果

            MessageBox.Show("统计完成!");
        }

        private void btnSave_Click(object sender, EventArgs e)
        {
            saveFileDialog1.Filter = "文本文件(*.txt)|*.txt|所有文件(*.*)|*.*"; // 保存文件类型为txt
            saveFileDialog1.RestoreDirectory = true; // 记录存储路径

            if (outputStr == string.Empty)
            {
                MessageBox.Show("内容为空,不能保存!");
                return;
            }

            if (saveFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                // 获取打开的文件路径
                string savePath = saveFileDialog1.FileName;

                // 给打开的路径下写入txt文件
                try
                {
                    File.WriteAllText(savePath, outputStr, Encoding.Default);

                    MessageBox.Show("保存成功!");
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.ToString());
                }
            }
        }

        private void btnLoad_Click(object sender, EventArgs e)
        {
            string loadStr = ""; // 读取的字符串

            openFileDialog1.Filter = "文本文件(*.txt)|*.txt|所有文件(*.*)|*.*";
            openFileDialog1.RestoreDirectory = true;

            if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                string selectedPath = openFileDialog1.FileName;
                loadStr = File.ReadAllText(selectedPath, Encoding.Default);

                rtbOutput.Text = loadStr;
                MessageBox.Show("加载成功!");
            }
            else
            {
                openFileDialog1.Dispose();
            }

            
        }
        
        /// <summary>
        /// 统计字符串中的字符、字符个数、字符位置
        /// </summary>
        /// <param name="inputStr">输入字符串</param>
        /// <returns></returns>
        private string CountCharInString(string inputStr)
        {
            string outputStr = "";

            // 首先定义3个数据结构,分别装字符组、字符统计组、字符位置组
            List<char> charName = new List<char>(); // 用来装不同的数组
            List<int> charCount = new List<int>(); // 用来装不同字符的统计个数
            List<List<int>> charLocation = new List<List<int>>(); // 用来同一个字符所在的位置

            // 先将字符串转成字符串数组
            char[] inputChar = inputStr.ToCharArray(0, inputStr.Length);
            for (int i = 0; i < inputChar.Length; i++)
            {
                if (charName.Contains(inputChar[i]) == false)
                {
                    charName.Add(inputChar[i]);
                }
            }

            // 根据不同的字符,获取相同字符的个数、位置
            for (int j = 0; j < charName.Count; j++)
            {
                int count = 0; // 统计当前字符的个数
                List<int> location = new List<int>(); // 获取当前字符的位置

                for (int i = 0; i < inputChar.Length; i++)
                {
                    if (charName[j] == inputChar[i])
                    {
                        count++;
                        location.Add(i);
                    }
                }

                // 将获取的个数、位置加入整体的统计列表
                charCount.Add(count);
                charLocation.Add(location);
            }

            // 输出拼接字符串
            for (int i = 0; i < charName.Count; i++)
            {
                outputStr = outputStr + charName[i] + ":" + charCount[i] + "次;";
                for (int j = 0; j < charLocation[i].Count; j++)
                {
                    outputStr = outputStr + (charLocation[i][j] + 1).ToString();

                    if (j != charLocation[i].Count - 1)
                    {
                        outputStr = outputStr +","; // 非末尾数值拼接逗号
                    }
                    
                }
                outputStr = outputStr + "\n"; // 换行
            }

            // 清空列表,释放资源
            charName.Clear();
            charCount.Clear();
            charLocation.Clear();

            return outputStr;
        }
    }
}
相关推荐
何曾参静谧3 分钟前
「Py」Python基础篇 之 Python都可以做哪些自动化?
开发语言·python·自动化
Prejudices7 分钟前
C++如何调用Python脚本
开发语言·c++·python
我狠狠地刷刷刷刷刷20 分钟前
中文分词模拟器
开发语言·python·算法
wyh要好好学习24 分钟前
C# WPF 记录DataGrid的表头顺序,下次打开界面时应用到表格中
开发语言·c#·wpf
AitTech24 分钟前
C#实现:电脑系统信息的全面获取与监控
开发语言·c#
qing_04060326 分钟前
C++——多态
开发语言·c++·多态
孙同学_27 分钟前
【C++】—掌握STL vector 类:“Vector简介:动态数组的高效应用”
开发语言·c++
froginwe1128 分钟前
XML 编辑器:功能、选择与使用技巧
开发语言
Jam-Young33 分钟前
Python的装饰器
开发语言·python
小辛学西嘎嘎1 小时前
C/C++精品项目之图床共享云存储(3):网络缓冲区类和main
c语言·开发语言·c++