C++版本号处理1 - 判断一个字符串是否为版本号

1. 关键词

关键词:

C++ 版本号处理 版本号判断 跨平台

实现原理:

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

应用场景:

判定一个字符串是否是指定的版本号格式

2. verutil.h

#pragma once

#include <string>

namespace cutl
{
    /**
     * @brief Check if a string is a valid version.
     *
     * @param text The string to check.
     * @return true if the string is a valid version, false otherwise.
     */
    bool is_version(const std::string &text);
} // namespace cutl

3. verutil.cpp

#include <regex>
#include "verutil.h"
#include "strutil.h"
#include "inner/logger.h"

namespace cutl
{
    bool is_version(const std::string &text)
    {
        try
        {
            // 这里可以自定义自己的版本号格式
            std::regex versionRule(R"(^\d{1,2}([.]\d{1,2}){0,2}[.]\d{1,3}$)");
            return regex_match(text, versionRule);
        }
        catch (const std::exception &e)
        {
            CUTL_ERROR(e.what());
            return false;
        }
    }
} // namespace cutl

4. 测试代码

#include "common.hpp"
#include "verutil.h"

void TestIsVersion()
{
    PrintSubTitle("TestIsVersion");

    // is version
    auto version1 = "3.28.3";
    std::cout << version2 << " is version: " << cutl::is_version(version1) << std::endl;
    auto version2 = "v3.2.2";
    std::cout << version3 << " is version: " << cutl::is_version(version2) << std::endl;
}

5. 运行结果

-------------------------------------------TestIsVersion--------------------------------------------
3.28.3 is version: 1
v3.2.2 is version: 0

6. 源码地址

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

posted @ 2024-06-26 12:36  陌尘(MoChen)  阅读(4)  评论(0编辑  收藏  举报