Stripping characters...

V

VJ

I'm trying to strip the characters from a text box...
but I only know how to apply it to text...
for example..


string fname = @"*\John Doe";
string pattern = @"^.*\\";
string name = Regex.Replace(fname, pattern," ");


but how can i do it for a passed variable...
like @Request.Form["fname"];

string fname = @Request.Form["fname"];
string pattern = @"^.*\\";
string name = Regex.Replace(fname, pattern," ");
 
J

John Timney \( MVP \)

Have you tried

string pattern = @"^.*\\";
string name = Regex.Replace(Request.Form["fname"], pattern," ");
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,731
Messages
2,569,432
Members
44,832
Latest member
GlennSmall

Latest Threads

Top