您的位置:首页 > 科技 > IT业 > C++版本号处理2 - 从文本字符串中提取版本号信息

C++版本号处理2 - 从文本字符串中提取版本号信息

2024/12/26 12:25:11 来源:https://blog.csdn.net/luoweifu/article/details/139986158  浏览:    关键词:C++版本号处理2 - 从文本字符串中提取版本号信息
  • 1. 关键词
  • 2. verutil.h
  • 3. verutil.cpp
  • 4. 测试代码
  • 5. 运行结果
  • 6. 源码地址

1. 关键词

关键词:

C++ 版本号处理 获取版本号 跨平台

实现原理:

使用正则表达式进行版本号匹配。

应用场景:

从文本字符串中提取版本号信息.

2. verutil.h

#pragma once#include <string>namespace cutl
{/*** @brief Parse a version string from a text.** @param text The text to parse.* @return std::string The parsed version string.*/std::string get_version(const std::string &text);
} // namespace cutl

3. verutil.cpp

#include <regex>
#include "verutil.h"
#include "strutil.h"
#include "inner/logger.h"namespace cutl
{std::string get_version(const std::string &text){try{std::regex versionRule(R"(\d{1,2}(\.\d{1,2}){0,2}\.\d{1,3})");std::smatch result;if (regex_search(text, result, versionRule)){return result.str();}return "";}catch (const std::regex_error &e){CUTL_ERROR(e.what());return "";}}
} // namespace cutl

4. 测试代码

#include "common.hpp"
#include "verutil.h"void TestGetVersion()
{PrintSubTitle("TestGetVersion");// get version from stringauto version1 = cutl::get_version("cmake version 3.28.3");std::cout << "version1: " << version1 << std::endl;
}

5. 运行结果

-------------------------------------------TestGetVersion-------------------------------------------
version1: 3.28.3

6. 源码地址

更多详细代码,请查看本人写的C++ 通用工具库: common_util, 本项目已开源,代码简洁,且有详细的文档和Demo。

本文由博客一文多发平台 OpenWrite 发布!

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com