[C + + standard library]_[primary]_[filter illegal characters in Windows filenames]

Source: Internet
Author: User


Scene:

1. A file name is usually required to generate files, which may be generated by user-entered characters, but some characters cannot be used as filenames on windows, and forcing the creation of such files will fail.

2. It is generally possible to replace all illegal characters with regular expressions, where the c++98 template (template) substitution of invalid characters is implemented, std::string,std::wstring. Basically, the windows and strings are inseparable from wstring.


Function:


Call:

std::wstring WSS (L "/ASFASDF China Asdfas*dfa.txt"); Filterinvalidfilenamechar (WSS), cout << Unicode2ansi (Wss.c_str ()) << endl;std::string SS ("/asfasdf\\ Asdfas*dfa.txt "); Filterinvalidfilenamechar (ss); cout << ss.c_str () << Endl;

Output:

_ASFASDF China Asdfas_dfa.txt_asfasdf_asdfas_dfa.txt



[C + + standard library]_[primary]_[filter illegal characters in Windows filenames]

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.