C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了C模仿命令大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
如何实现ls“filename_ [0-5] [3-4]?”喜欢上课?结果我想存储在向量中.

目前我正在使用调用ls的system(),但这在MS下是不可移植的.

谢谢,
阿尔曼.

解决方法

以下程序列出当前目录中名称与正则表达式filename_ [0-5] [34]匹配的文件

#include <boost/filesystem.hpp>
#include <boost/regex.hpp>  // also functional,iostream,iterator,String
namespace bfs = boost::filesystem;

struct match : public std::unary_function<bfs::directory_entry,bool> {
    bool operator()(const bfs::directory_entry& d) const {
        const std::string pat("filename_[0-5][34]");
        std::string fn(d.filename());
        return boost::regex_match(fn.begin(),fn.end(),boost::regex(pat));
    }
};

int main(int argc,char* argv[])
{
    transform_if(bfs::directory_iterator("."),bfs::directory_iterator(),std::ostream_iterator<std::string>(std::cout,"\n"),match(),mem_fun_ref(&bfs::directory_entry::fileName));
    return 0;
}

为简洁起见,我省略了transform_if()的定义.它不是标准功能,但应该直接实现.

大佬总结

以上是大佬教程为你收集整理的C模仿命令全部内容,希望文章能够帮你解决C模仿命令所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:c命令模仿