net代码中删除textarea中的重复文本

net代码中删除textarea中的重复文本

本文介绍了如何在C#.net代码中删除textarea中的重复文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在Google中进行了搜索,但不能完全解决我的问题.

I have search this in Google but not exactly solution of my problems.

推荐答案

string SearchFor = "Hi";
string ReplaceWith = "Bye";
textbox1.Text = "Hi, this is your textbox string Hi";
textbox1.Text = textbox1.Text.Replace(SearchFor, ReplaceWith);

/* RESULTS: "Bye, this is your textbox string Bye" */


这篇关于如何在C#.net代码中删除textarea中的重复文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 08:50