| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
Arguments: regexp string &rest args &key count start end &allow-other-keys
Scan string for a delimiter given by regexp and return a list of substrings. If count is given, then split into no more than count substrings, in which case the last substring will contain the rest of the string.
Use of this function is deprecated and it is maintained for backward compatibility only. See regexp.htm for information on the newer regular expression compiler in Allegro CL. You should use the functionality described there instead of this function is new code.
Examples:
(split-regexp (make-string 1 :initial-element #\newline) (format nil "1~%2~%3~%4~%5")) --> ("1" "2" "3" "4" "5") (split-regexp ":" "1:2:3:4:5") --> ("1" "2" "3" "4" "5") (split-regexp ":" "1:2:3:4:") --> ("1" "2" "3" "4")
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |