C++的字符串格式化库
这里向大家介绍一个C++的字符串格式化库,叫cpptempl,这个库支持对字符串格式的条件,循环,变量插入。看上去很不错,只不过其是基于boost库的。
下面是一个例子:
// The text template
wstring text = L"I heart {$place}!" ;
// Data to feed the template engine
cpptempl::data_map data ;
// {$place} => Okinawa
data[L"place"] = cpptempl::make_data(L"Okinawa");
// parse the template with the supplied data dictionary
wstring result = cpptempl::parse(text, data) ;
输出结果是:
I heart Okinawa!
是不是很方便?让我们看一个更复杂的例子:
// You'd probably load this template from a file in real life.
wstring text = L"
Locations
\n- \n"
- {$place} \n"
L"{% for place in places %}"
L"
L"{% endfor %}"
L"
// Create the list of items
cpptempl::data_list places;
places.push_back(cpptempl::make_data(L"Okinawa"));
places.push_back(cpptempl::make_data(L"San Francisco"));
// Now set this in the data map
cpptempl::data_map data ;
data[L"places"] = cpptempl::make_data(places);
// parse the template with the supplied data dictionary
wstring result = cpptempl::parse(text, data) ;
输出结果是:
Locations
- Okinawa
- San Francisco
更为详细的说明请到这里:http://bitbucket.org/ginstrom/cpptemplate/wiki/Home。
Google也有一个类似的库叫ctemplate:http://code.google.com/p/google-ctemplate/ 提供相似的方法,你也可以试试看。与Google相对应的Java库叫Hapax:http://code.google.com/p/hapax/。
转载于酷壳CoolShell 无删改 仅以此纪念陈皓(左耳朵耗子)
学习C++很长时间了,也看过很多程序员学习C++的历程。总体来说,C++是一个“双刃剑”式的语言,只有那些熟悉他的人才能把C++这门语言用好。Linus曾说过:“C++是一门很…
京东价格 1400 不到,家庭用,单盘 4T ,主要备份照片视频啥的,咋样? 因为单盘的,打算用移动硬盘备份或者阿里云备份 毫无性价比,钱多的没地方花可以买,我就劝到这儿了…
前置背景: 有 NAS 、网盘多处备份,所以云服务的可用性、可靠性不那么重要; 主要目的是想方便爸爸妈妈随时看我们的出游照片。 大致是想上传一些 JPG 的图片用于随时看,…