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...
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)
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)