Hi,
I want to remove the invalid or illegal character form a string in c#, kindly help me out
Thank you,
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mukesh KumarPosted Nov 9, 2015, 2:50 AM
regular expressionsin C#.
orUsing regular expressions with C#:praveen kumarPosted Nov 9, 2015, 1:24 AM
FileInfo[] infos = d.GetFiles();
foreach (FileInfo f in infos)
File.Move(f.FullName, Path.Combine(f.DirectoryName, "N " + label3.Text + "-" + label4.Text + " " + "9187" + " " + "0000" + " " + "00" + " " + textBox5.Text + textBox2.Text + " " + ".doc"));
// System.IO.File.Move(textBox3.Text,path);
MessageBox.Show("Done");
}
Nishant MittalPosted Nov 9, 2015, 12:51 AM