char string library. There is a character string splitting function.
Diff: StringUtil.cpp
- Revision:
- 1:fc299d8c1c7e
- Parent:
- 0:c6bf0554e2f3
- Child:
- 2:dbd6f2a04946
--- a/StringUtil.cpp Sun Dec 03 05:35:31 2017 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -#include "StringUtil.h" -#include "mbed.h" - -#define MAXITEM 20 // 数字が大きすぎるとメモリーオーバーエラーがでる - -StringUtil::StringUtil() { -} - -int StringUtil::splitChar( char *str, const char *delim, char *outlist[] ){ - char *tk; - int cnt = 0; - - tk = strtok( str, delim ); - - while( tk != NULL && cnt < MAXITEM ) { - outlist[cnt++] = tk; - tk = strtok( NULL, delim ); - } - - return cnt; -} \ No newline at end of file