c++实现从文件名中提取指定位置的信息

假设文件名称示例如下,

7_1_1221636_I_87_67_223_223_996.05_N-1.jpg

其中87、67、223、223分别为xywh,

可以使用以下代码提取xywh信息,

#include <iostream>
#include <regex>
#include <string>


std::string filename = "7_1_1221636_I_87_67_223_223_996.05_N-1.jpg";

int x = 0;
int y = 0;
int w = 0;
int h = 0;

// 创建一个正则表达式模式,用于匹配连续的四个数字,由下划线分隔
std::regex pattern(R"(\d+_\d+_\d+_\d+)");
// 创建一个std::smatch对象matches,用于存储匹配结果
std::smatch matches;

// 使用std::regex_search函数在字符串filename中查找匹配的子字符串,并将匹配结果存储在matches中
if (std::regex_search(filename, matches, pattern)) 
{
	std::string xywh = matches[0];
    // 创建一个std::istringstream对象iss,并将xywh作为其构造函数的参数,用于将xywh字符串转换为输入流
	std::istringstream iss(xywh);
	std::string xStr, yStr, wStr, hStr;
    // 使用std::getline函数从输入流iss中按下划线分隔提取子字符串,并分别存储到对应的字符串变量中
	std::getline(iss, xStr, '_');
	std::getline(iss, yStr, '_');
	std::getline(iss, wStr, '_');
	std::getline(iss, hStr, '_');
    // 使用std::stoi函数将提取的子字符串转换为整数类型,并将结果存储到对应的变量中
	x = std::stoi(xStr);
	y = std::stoi(yStr);
	w = std::stoi(wStr);
	h = std::stoi(hStr);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

chen_znn

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值