From http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx, We know Windows reserve some characters:
< (less than)
> (greater than)
: (colon)
" (double quote)
/ (forward slash)
\ (backslash)
| (vertical bar or pipe)
? (question mark)
* (asterisk)
I have a file name which contains come of those special characters,
I want to replace those with "",
something like this (string.replace(/\<>/g, '')
Thanks