在C語言中分割字符串

C語言的庫函數中,沒有類似java中String類的split方法,可以把一個長字符串分割爲字符串數組。不過,還是可以利用幾個庫函數,自己造出split的效果。雖然不像java那樣支持分隔符爲正則表達式,但一般情況下也夠用了。 #include <stdio.h> #include <stdlib.h> #include <string.h> /* * count the number of a
相關文章
相關標籤/搜索