正则模拟读取INI文件的具体代码

来源:爱站网时间:2022-12-22编辑:网友分享
这篇文章介绍的是正则模拟读取INI文件的具体代码内容,想要这个知识点的朋友可以看看小编整理出来的代码,经过了测试,朋友们可以放心复制使用,希望文章对你有帮助哦。

废话不多说了,直接给大家贴代码了,具体代码如下所示:

#include "stdio.h" 
#include  
#include  
#include  
#include  
using namespace std; 
void Trim(char * str); 
void lTrim(char * str); 
void rTrim(char * str); 
// 测试sscanf 和 正则表达式 
// sscanf提供的这个扩展功能其实并不能真正称为正则表达式,因为他的书写还是离不开% 
// []表示字符范围,{}表示重复次数,^表示取非,*表示跳过。所以上面这个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语言实现上例 
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++实现 
template 
inline T1 parseTo(const T2 t) 
{ 
 static stringstream sstream; 
 T1 r; 
 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 ("123"); 
   // float f = parseTo("1.23"); 
   // string str = parseTo(123); 
  } 
 } 
 else // 没有该文件 
 { 
  cout = 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); 
} 
*/ 

这篇关于正则模拟读取INI文件的具体代码文章,不知道有多少朋友们看懂,需要小编解答的话记得来留言就可以了,关注js.aizhan.com,带你体验各种不同的经常技术文章。 

上一篇:正则表达式进行各种字符串匹配代码

下一篇:replace中的正则详细介绍

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载