引入#include<stdlib.h>透過malloc建立動態陣列
char *n_list=(char*)malloc((n+1)*sizeof(char));記得大小要加一,因為字串結尾'\0'算一個空間再透過strstr的方式做尋找記得要free建立的空間