這篇文章主要介紹如何使用正則表達式regex_replace模擬讀取INI文件,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)為您提適合企業(yè)的網(wǎng)站設計?讓您的網(wǎng)站在搜索引擎具有高度排名,讓您的網(wǎng)站具備超強的網(wǎng)絡競爭力!結合企業(yè)自身,進行網(wǎng)站設計及把握,最后結合企業(yè)文化和具體宗旨等,才能創(chuàng)作出一份性化解決方案。從網(wǎng)站策劃到網(wǎng)站設計制作、網(wǎng)站設計, 我們的網(wǎng)頁設計師為您提供的解決方案。
具體代碼如下所示:
#include "stdio.h" #include#include #include #include using namespace std; void Trim(char * str); void lTrim(char * str); void rTrim(char * str); // 測試sscanf 和 正則表達式 // sscanf提供的這個擴展功能其實并不能真正稱為正則表達式,因為他的書寫還是離不開% // []表示字符范圍,{}表示重復次數(shù),^表示取非,*表示跳過。所以上面這個url的解析可以寫成下面這個樣子: // //char url[] = "dv://192.168.1.253:65001/1/1" // //sscanf(url, "%[^://]%*c%*c%*c%[^:]%*c%d%*c%d%*c%d", protocol, ip, port, chn, type); // //解釋一下 //先取得一個最長的字符串,但不包括字串 ://,于是protocol="dv\0"; //然后跳過三個字符,(%*c)其實就是跳過 :// // 接著取一個字符串不包括字符串 : ,于是ip = 192.168.1.253,這里簡化處理了,IP就當個字符串來弄,而且不做檢查 // 然后跳過冒號取端口到port,再跳過 / 取通道號到chn,再跳過 / 取碼流類型到type。 // c語言實現(xiàn)上例 void test1() { char url[] = "dv://192.168.1.253:65001/1/1"; char protocol[10]; char ip[17]; int port; int chn; int type; sscanf(url, "%[^://]%*c%*c%*c%[^:]%*c%d%*c%d%*c%d", protocol, ip, &port, &chn, &type); printf("%s, %s, %d, %d, %d\n", protocol, ip, port, chn, type); } // 讀取ini里某行字符串, 得到: hello world! // 正常串1: -claim="hello world!" // 正常串2: claim = "hello world!" // 正常串3: claim = " hello world!" // 正常串4: claim_ = hello world! // 干擾串1: cl-aim = \"hello world!" // 干擾串2: clai3m = "hello world!\" // 干擾串3: cla_im = \\"hello world!\" // 干擾串4: claim ='"hello world!\" // 干擾串5: claim= @"\nhello world!" // 干擾串6: claim=L"hello world!" // 未處理1: claim[1] = 1 // 未處理1: claim[2] = 1 void test2() { char line[1000] = { 0 }; char val[1000] = { 0 }; char key[1000] = { 0 }; FILE *fp = fopen("1.txt", "r"); if (NULL == fp) { printf("failed to open 1.txt\n"); return ; } while (!feof(fp)) { memset(line, 0, sizeof(line)); fgets(line, sizeof(line) - 1, fp); // 包含了每行的\n printf("%s", line); Trim(line); // 提取等號之前的內容 memset(key, 0, sizeof(key)); // sscanf使用的format不是正則表達式,不能用 \\s 表示各種空白符,即空格或\t,\n,\r,\f sscanf(line, "%[^ \t\n\r\f=]", key); //sscanf(line, "%*[^a-zA-Z0-9_-]%[^ \t\n\r\f=]", key); printf(" key: [%s]\n", key); // 提取等號之后的內容 memset(val, 0, sizeof(val)); sscanf(line, "%*[^=]%*c%[^\n]", val); // 不包含了每行的換行符 Trim(val); printf(" val: [%s]\n", val); // 去除兩邊雙引號 // ... // 插入map // map[key]=value; // string 轉 其它類型 // atoi, atol, atof } printf("\n"); fclose(fp); } // 上例的C++實現(xiàn) template inline T1 parseTo(const T2 t) { static stringstream sstream; T1 r; sstream << t; sstream >> r; sstream.clear(); return r; } void test3() { char val[1000] = { 0 }; char key[1000] = { 0 }; ifstream fin("1.txt"); string line; if (fin) { while (getline(fin, line)) // line中不包括每行的換行符 { cout << line << endl; /// 提取等號之前的內容 // 第1組()表示任意個空格字符,第2組()表示單詞(可帶_或-), // 第3組()表示1個以上的空格字符(或=),最后以任意字符串結尾 regex reg("^([\\s]*)([\\w\\-\\_]+)([\\s=]+).*$"); // 取第2組代替原串 string key = regex_replace(line, reg, "$2"); cout << " key: {" << key << "}" << endl; /// 提取等號之后的內容 // 第1組()表示任意個空格字符,第2組()表示單詞(可帶_或-), // 第3組()表示1個以上的空格字符(或=),第4組()表示任意個字符, // 第5組()表示以任意個空格字符(或回車換行符)結尾。 reg = regex("^([\\s]*)([\\w\\-\\_]+)([\\s=]+)(.*)([\\s\\r\\n]*)$"); // 取第4組代替原串 string val = regex_replace(line, reg, "$4"); cout << " val: {" << val << "}" << endl; // 去除兩邊雙引號 // ... // 插入map // map[key]=value; // string 轉 其它類型 // int i = parseTo ("123"); // float f = parseTo ("1.23"); // string str = parseTo (123); } } else // 沒有該文件 { cout << "no such file" << endl; } } void main() { //test1(); test2(); test3(); } void lTrim(char * str) { int i, len; len = strlen(str); for (i = 0; i = 0; i--) { if ((str[i] != ' ') && (str[i] != 0x0a) && (str[i] != 0x0d) && (str[i] != '\t') && (str[i] != '\f')) break; } str[i + 1] = 0; return; } void Trim(char * str) { int i, len; //先去除左邊的空格 len = strlen(str); for (i = 0; i = 0; i--) { if (str[i] != ' ' && str[i] != '\t' && str[i] != '\n' && str[i] != '\r' && str[i] != '\f') break; } str[i + 1] = 0; return; } /* void Trim(char * str) { lTrim(str); rTrim(str); } */
以上是“如何使用正則表達式regex_replace模擬讀取INI文件”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!