码迷,mamicode.com
首页 > 其他好文 > 详细

获取文件名后缀

时间:2014-09-11 17:03:42      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   文件   div   sp   log   

//获取文件名后缀
char* fileName = "pwave.sgy";
std::string file_str = fileName;
int pos = file_str.rfind(.) + 1;
std::string temp = file_str.substr( pos );

 

获取文件名后缀

标签:style   blog   color   os   ar   文件   div   sp   log   

原文地址:http://www.cnblogs.com/thinknothing/p/3966765.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!