Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Delete To Left of Character

Status
Not open for further replies.

rstum2005

Programmer
Jun 9, 2005
117
US
Im trying to delete 4 to the left of a certain character in a richTextBox along with the character. This is what im trying to work with...

Code:
char[] trim = {')'}; 
int pos;
while ((pos = this.richTextBox1.Text.IndexOfAny (trim)) >= 0) 
				{
this.richTextBox1.Text = this.richTextBox1.Text.Remove(pos,1);
				}

I Tried changing the (pos,1) to (pos,-3) but this did not work?

For Example I need to delete these,
1)
12)
123)
1234)
 
string myText = this.richTextBox1.Text;

int index = myText.IndexOf(")");

string trimmed = myText.SubString(index, myText.Length - index);
 
Thanks JurkMonkey

But I used this and it works for what im doing.

Code:
for (int a=200;a>=0;a--)
{
string tr = richTextBox1.Text.ToString();
string str2 = tr.Replace(a+")","");
richTextBox1.Text=str2;
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top