views:

60

answers:

1

I am writing an application in C# that will need to find placeholders in URLs and/or file names, and substitute in a value, much like this: C:\files\file{number} => C:\files\file1 Unfortunately for that example, curly braces are allowed in file names and URLs.

Can anyone please suggest some characters that I can use to denote placeholders in files and URLs? Thank you!

+3  A: 
Michael Petrotta
Thank you for your response! I need characters that are invalid in file names AND URLs, however.
SimpleCoder
@SimpleCoder: see my edit.
Michael Petrotta
Thank you, it appears that the double-quotation mark will work, then.
SimpleCoder