
	explode(3)		MudOS v21c2		(5 Sep 1994)

	名稱:
		explode() - 打斷一個字串.
	語法:
		string *explode( string str, string del );

		字串 *explode( 字串 str, 字串 del );
	用法:
		explode() 傳回一個字串的陣列 (array), 此陣列是
		字串 str 以 del 分界打斷的片段.
	範例:
		explode( str, " " );

		這樣會傳回一個 str 中所有英文單字的字串陣列 (假設
		str 是英文句子, 每一個單字由空白字元隔開).
	參考:
		sscanf(3), extract(3), replace_string(3), strsrch(3)
	翻譯:
		Spock @ FF	97.Feb.12.		(printed 3/16/95)
