次のエントリ: const で定数宣言 [c]
文字列をフォーマット通りに分割する
2005-04-20-1 / カテゴリ: [programming][c] / [permlink]
sscanf(string, format, ...) を使う
#include <stdio.h> int sscanf(const char *s, const char *format, ...); 入力文字列 入力書式文字列 格納可変個引数コード
char buf[] = "5/4/20"; int yy, mm, dd; sscanf(buf, "%2d/%2d/%2d", &yy, &mm, &dd);で、yy に 5, mm に 4, dd に 20 が入る
Referrer (Inside):
[2006-03-13-3]
次のエントリ: const で定数宣言 [c]
2013 : 01 02 03 04 05 06 07 08 09 10 11 12
2012 : 01 02 03 04 05 06 07 08 09 10 11 12
2011 : 01 02 03 04 05 06 07 08 09 10 11 12
2010 : 01 02 03 04 05 06 07 08 09 10 11 12
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
2004 : 01 02 03 04 05 06 07 08 09 10 11 12
最終更新時間: 2013-05-02 16:12