从 vb.net 以编程方式替换 txt 文件内的变量

发布于 2024-11-19 08:49:56 字数 334 浏览 3 评论 0原文

我在尝试做一件事时遇到了一些问题,如果这里有人可以给我建议或一些帮助,那就太好了。

我需要从 txt 文件中读取一些信息并将所有信息放入文本框(这已准备就绪并完成),

但文本文件有一些变量,例如 %userName%,我需要在 vb.net 中以编程方式替换它们,任何 1 有一个知道怎么做吗?

文本文件示例:

hello %userName% ,这是您帐户使用情况的自动报告。

这就是 txt 文件中的内容,当我将其读取到 vb.net 并将该信息放入文本框中时,这样做是正确的,但问题是如何替换另一个文本框中的某些文本的 %userNams% 并在我时替换按一个按钮?

I have some issues trying to make a thing, if any 1 here can give me an advice or some help will be nice.

I need to read some information from a txt file and put all that info to a textbox (this is ready and done)

but the textfile have some variables like %userName% that i need to replace programatically in vb.net, any 1 have an idea how to do it?

example of text file:

hello %userName% , this is an automated report of the uses of your account.

this is what the txt file have in it, when i read it to vb.net and put that info into a textbox is done right, but the question is how to replace the %userNams% for some text in another textbox and replaced when i press a button?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长安忆 2024-11-26 08:49:56
TextBox1.Text = TextBox1.Text.Replace("%userName%", TextBox2.Text)
TextBox1.Text = TextBox1.Text.Replace("%userName%", TextBox2.Text)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文