程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> 關於C >> wincc 環境下c語言處理字符串分割的strtok函數

wincc 環境下c語言處理字符串分割的strtok函數

編輯:關於C

CTxtDemDlg::GetAddressAndUnit(char* str,char *Add,char *Unit,char *Name)
{
 char*p;
 char p1=',';
 p=strtok(str,&p1);
    strncpy(Add,str,strlen(p));
    int i=0;www.2cto.com
    while(p!=NULL)
    {
     p=strtok(NULL,",");
     i++;
     if(i==1 && p!=NULL)
     {
      strncpy(Name,p,strlen(p));
     }
     else if(i==3 && p!=NULL)
     {
      strncpy(Unit,p,strlen(p));
      break;
     }
     else if(p==0)
     {
      break;
     }
    }
   
}

使用strtok函數在字符串str中用‘,’分割的字符串

 


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