1. explode(3) LP MudOSv21c7 (7 Jul 1996)
    2. 函数名称:
    3. explode() - 打断一个字串.
    4. 函数语法:
    5. string *explode( string str, string del );
    6. 字串 *explode( 字串 str, 字串 del );
    7. 函数用法:
    8. explode() 传回一个字串的阵列 (array), 此阵列是
    9. 字串 str del 分界打断的片段.
    10. □例:
    11. explode( str, " " );
    12. 这样会传回一个 str 中所有英文单字的字串阵列 (假设
    13. str 是英文句子, 每一个单字由空白字元隔开).
    14. 参考函数:
    15. sscanf(3), extract(3), replace_string(3), strsrch(3)
    16. 手册翻译:
    17. Phoebus@ZH 97.Feb.12. (Writen 5/23/97)