gpt4 book ai didi

c# - 显示 .txt 文件中的随机行 - C#

转载 作者:行者123 更新时间:2023-11-30 20:56:53 24 4
gpt4 key购买 nike

我正在尝试在 C# (winforms) 中做一些事情,但我遇到了一个小问题。我已经尝试了与此问题相关的所有代码,但没有成功。请在回答前阅读问题。

我有两个函数。我想制作 1 个函数,该函数将从特定的 .txt 文件中获取随机行并将其放入另一个文件中。

这是一个例子:

//This is a ContexMenuStrip, a right click menu item that need to load Function1 (check the picture below

private void pdkName_Click(object sender, EventArgs e)
{
Function1();
}

private void Function1()
{
//CODE to Count and Display random line from .txt file
}

到目前为止,我已经尝试过许多以前发布在 stackoverflow.com 上的代码,并且我还尝试过大量与它们的组合。我会在这里粘贴其中的一些:


Random rand = new Random();
IEnumerable<string> lines = File.ReadLines(@"D:\FirstName.txt");
var lineToRead = rand.Next(1, lines.Count());
var line = lines.Skip(lineToRead - 1).First();

int counter = 0;
string line;

// Read the file and display it line by line.
System.IO.StreamReader file =
new System.IO.StreamReader(@"D:\FirstNames.txt");
while ((line = file.ReadLine()) != null)
{
System.Console.WriteLine(line);
counter++;
}
file.Close();
System.Console.WriteLine("There were {0} lines.", counter);
// Suspend the screen.
System.Console.ReadLine();

//这有效,但仅适用于第一行,不能对其进行任何组合(从其他函数使其随机)

using (StreamReader reader = File.OpenText(@"D:\FirstName.txt")
{
textBox1.Text = reader.ReadLine();
}

var lines = File.ReadAllLines(@"D:\FirstNames.txt");
var r = new Random();
var randomLineNumber = r.Next(0, lines.Length - 1);
var line = lines[randomLineNumber];

string[] lines = File.ReadAllLines(@"D:\FirstNames.txt"); 
Random rand = new Random();
return lines[rand.Next(lines.Length)];

该函数需要对文件进行计数,随机选择一行并返回。调用该函数的 ContexMenuStrip 中的项目菜单用于 TEXTBOX。

所以一般来说,我需要 .txt 文件中的一个随机名称显示在文本框内,方法是单击右键单击文本框并选择加载我的函数的项目。这是一张带有简单解释的小图片。

enter image description here

最佳答案

像fabian说的还是在方括号里面声明random然后直接调用next方法

string[] lines = File.ReadAllLines(@"C:\...\....\YourFile.txt");

textBox1.Text = lines[new Random().Next(lines.Length)];

关于c# - 显示 .txt 文件中的随机行 - C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17256537/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com