I need to find and replace #-#-# with nothing in a richtextbox.
How would I tell it that if there is any number then a - then any number then - then any number. To replace #-#-# with a space. My attempted code is below.
Code:RichTextBox1.Text = Replace(RichTextBox1.Text, #-#-# , " ")




Reply With Quote
