一. strtok(),用于字符串分割
char *strtok(char *str, const char *delim)
str -- 要被分解成一组小字符串的字符串。
delim -- 包含分隔符的 C 字符串。
二、sscanf()
int sscanf(const char *str, const char *format, ...)
三、strstr(),用于字符串检索
char *strstr(const char *haystack, const char *needle)
haystack -- 要被检索的 C 字符串。
needle -- 在 haystack 字符串内要搜索的小字符串。