lispdoc - results for string= |
(string= string1 string2 &key (start1 0) end1 (start2 0) end2) | Function: Given two strings (string1 and string2), and optional integers start1, start2, end1 and end2, compares characters in string1 to characters in string2 (using char=).
|
Example:(defun id3-p (file) (with-open-file (in file :element-type '(unsigned-byte 8)) (string= "ID3" (read-value 'iso-8859-1-string in :length 3)))) | Mentioned in: CLtL2 - 10.3. Creating Symbols CLtL2 - 11.7. Package System Functions and Variables CLtL2 - 18.2. String Comparison CLtL2 - 19.2. How to Use Defstruct CLtL2 - 6.3. Equality Predicates HyperSpec - Function STRING=, STRING/=, STRING<, STRING>, STRING<=, STRING>=, STRING-EQUAL, STRING-NOT-EQUAL, STRING-LESSP, STRING-GREATERP, STRING-NOT-GREATERP, STRING-NOT-LESSP PCL - defining a schema PCL - lookup tables alists and plists PCL - string comparisons PCL - the database Successful Lisp - chapter17 |
(string>= string1 string2 &key (start1 0) end1 (start2 0) end2) | Function: Given two strings, if the first string is lexicographically greater than or equal to the second string, returns the longest common prefix (using char=) of the two strings. Otherwise, returns ().
|
| Mentioned in: CLtL2 - 18.2. String Comparison PCL - string comparisons Successful Lisp - chapter17 | |
(string<= string1 string2 &key (start1 0) end1 (start2 0) end2) | Function: Given two strings, if the first string is lexicographically less than or equal to the second string, returns the longest common prefix (using char=) of the two strings. Otherwise, returns ().
|
| Mentioned in: CLtL2 - 18.2. String Comparison PCL - string comparisons Successful Lisp - chapter17 | |
(string/= string1 string2 &key (start1 0) end1 (start2 0) end2) | Function: Given two strings, if the first string is not lexicographically equal to the second string, returns the longest common prefix (using char=) of the two strings. Otherwise, returns ().
|
| Mentioned in: CLtL2 - 18.2. String Comparison PCL - string comparisons Successful Lisp - chapter17 | |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |