[RESOLVED] [2.0] wildcards...
Is there any way to use wildcards in C#?? The usual method doesn't work...for example textBox1.Text=textBox1.Text.Replace("The second word will be removed.","The *word");
in this, the "second" should be omitted from textBox1, but that doesn't seem to work for me in C#...could anyone tell me how to use them?:ehh:
Re: [RESOLVED] [2.0] wildcards...
You only need one Regex object, although you can use more if you like. You can operate on multiple strings using one Regex, even changing the pattern in between if you want.