程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++的字符串格式化庫

C++的字符串格式化庫

編輯: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!

是不是很方便?讓我們看一個更復雜的例子:


// Youd probably load this template from a file in real life.
wstring text = L"<h3>Locations</h3> <ul> "
    L"{% for place in places %}"
    L"<li>{$place}</li> "
    L"{% endfor %}"
    L"</ul>" ;
// 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) ;輸出結果是:

<h3>Locations</h3>
<ul>
<li>Okinawa</li>
<li>San Francisco</li>
</ul>

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved