get-output-string
-- r7rs
Definition procedure
;
get-output-string
(from vonuvoli
);Procedure variants:
((string-output-port) -> (string))
string-output-port
;string
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(get-output-string port)
Domain: It is an error if
port
was not created withopen-output-string
.Returns a string consisting of the characters that have been output to the port so far in the order they were output. If the result string is modified, the effect is unspecified.
(parameterize ((current-output-port (open-output-string))) (display "piece") (display " by piece ") (display "by piece.") (newline) (get-output-string (current-output-port))) ===> "piece by piece by piece.\n"
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.