string
List of: Scheme Data Types
Subjects: Mathematics, Text
Contents: Scheme Support

Description: A string is a scheme-object containing a text string. Strings often display messages to the output window. string objects are not saved and restored as part of the model.

Derivation: string : scheme-object

C++ Type: char*

External Rep: "%s"

Example: ;; string (data type)

;; Define and inquire a string object.

(define testing "This is a test.")

;; testing

(string? testing)

;; #t

(string-length testing)

;; 15
PDF/SCM/09SD.PDF
HTM/DATA/SCM/SCM/09SD/0074.HTM