文章目录
https://blog.youkuaiyun.com/u013171226/article/details/107680268
实例
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str_path = "https://cdn.stubdownloader.services.mozilla.com/builds/firefox-latest-ssl/zh-CN/win64/3fc87ab359974206b023c078da971146640e845508111e6526ebdec9c8d089e0/Firefox%20Setup%2091.0.exe";
int pos = str_path.find_last_of("/");
string filename(str_path.substr(pos+1));
cout << "filename:" << filename << endl;
return 0;
}