| |
|
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
| -> C++知识库 -> 蓝桥ROS机器人之现代C++学习笔记 第6章正则表达式习题 -> 正文阅读 |
|
|
[C++知识库]蓝桥ROS机器人之现代C++学习笔记 第6章正则表达式习题 |
|
完全不会做,只能记录一下了。
修改2a为17。
效果如下: http
稍作修改:? ? ? ? 正则表达式本身,然后根据使用正则表达式的主要需求,通过一个实际的例子介绍了正则表达式库的使用。 习题
给定如下请求结构: struct Request {
? ?// request method, POST, GET; path; HTTP version
? ?std::string method, path, http_version;
? ?// use smart pointer for reference counting of content
? ?std::shared_ptr<std::istream> content;
? ?// hash container, key-value dict
? ?std::unordered_map<std::string, std::string> header;
? ?// use regular expression for path match
? ?std::smatch path_match;
};
请求的资源类型: typedef std::map< ? ?std::string, std::unordered_map< ? ? ? ?std::string,std::function<void(std::ostream&, Request&)>>> resource_type; 以及服务端模板: template <typename socket_type>
class ServerBase {
public:
? ?resource_type resource;
? ?resource_type default_resource;
?
? ?void start() {
? ? ? ?// TODO
? }
protected:
? ?Request parse_request(std::istream& stream) const {
? ? ? ?// TODO
? }
}
请实现成员函数 template<typename SERVER_TYPE>
void start_server(SERVER_TYPE &server) {
?
? ?// process GET request for /match/[digit+numbers], e.g. GET request is /match/abc123, will return abc123
? ?server.resource["fill_your_reg_ex"]["GET"] = [](ostream& response, Request& request) {
? ? ? ?string number=request.path_match[1];
? ? ? ?response << "HTTP/1.1 200 OK\r\nContent-Length: " << number.length() << "\r\n\r\n" << number;
? };
?
? ?// peocess default GET request; anonymous function will be called if no other matches
? ?// response files in folder web/
? ?// default: index.html
? ?server.default_resource["fill_your_reg_ex"]["GET"] = [](ostream& response, Request& request) {
? ? ? ?string filename = "www/";
?
? ? ? ?string path = request.path_match[1];
?
? ? ? ?// forbidden use `..` access content outside folder web/
? ? ? ?size_t last_pos = path.rfind(".");
? ? ? ?size_t current_pos = 0;
? ? ? ?size_t pos;
? ? ? ?while((pos=path.find('.', current_pos)) != string::npos && pos != last_pos) {
? ? ? ? ? ?current_pos = pos;
? ? ? ? ? ?path.erase(pos, 1);
? ? ? ? ? ?last_pos--;
? ? ? }
?
? ? ? ?// (...)
? };
?
? ?server.start();
}
参考原作者答案。 |
|
|
| C++知识库 最新文章 |
| 【C++】友元、嵌套类、异常、RTTI、类型转换 |
| 通讯录的思路与实现(C语言) |
| C++PrimerPlus 第七章 函数-C++的编程模块( |
| Problem C: 算法9-9~9-12:平衡二叉树的基本 |
| MSVC C++ UTF-8编程 |
| C++进阶 多态原理 |
| 简单string类c++实现 |
| 我的年度总结 |
| 【C语言】以深厚地基筑伟岸高楼-基础篇(六 |
| c语言常见错误合集 |
|
|
| 上一篇文章 下一篇文章 查看所有文章 |
|
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
| 360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年11日历 | -2025/11/29 20:38:51- |
|
| 网站联系: qq:121756557 email:121756557@qq.com IT数码 |