專案目的:通過協議獲取乙個資料報,將資料報中的ucadxmsg第5、6、7位的年月日(以16進製制儲存)資料轉換成整形,作為目錄名建立目錄。本程式作為測試程式的目的是在主目錄名:韻達下建立目錄如:
#include
#include
#include
#include
#include
#include
typedef unsigned char uchar;
//建立目錄函式
void createdir(char *path,char *flitname,char *string)}}
#if 0
int htoi(char s)
else
for (; (s[i] >= '0' && s[i] <= '9')
|| (s[i] >= 'a' && s[i] <= 'z') || (s[i] >='a' && s[i] <= 'z');++i)
else }
return n;
} #endif
int main()
}#endif
dir *dirp=opendir(dirname);
if((dp=readdir(dirp))!=null)
fclose(fin);
free(newdirname);
newdirname=null;}}
closedir(dirp);
}
pandas把年月日資料分割成年 月 日單獨三列
原資料中date列是str型別,需要先轉化為日期格式,轉化之後如下圖所示 若要把年月日資料分開成年 月 日三列資料,需要從日期資料中提取年 月 日 把dataframe中的年月日列利用函式轉化成三列 def get ymd date 這裡的輸入date是一列年月日資料 y,m,d for i in ...
Delphi 獲取時間的年月日
varpresent tdatetime year,month,day,hour,min,sec,msec word begin present now decodedate present,year,month,day decodetime present,hour,min,sec,msec sh...
Mysql資料庫中獲取系統時間,年,月,日單個獲取
話不多說,直接上sql 獲取當前系統年月日 select current date as 年月日 獲取當前系統年份 select year current date as 年 獲取當前系統月份 select month current date as 月 獲取當前系統日 select day cur...