vote up 5 vote down star

Is there a Python class that wraps the file interface (read, write etc.) around a string? I mean something like the stringstream classes in C++.

I was thinking of using it to redirect the output of print into a string, like this

sys.stdout = string_wrapper()
print "foo", "bar", "baz"
s = sys.stdout.to_string() #now s == "foo bar baz"

EDIT: This is a duplicate of How do I wrap a string in a file in Python?

flag

closed as exact duplicate by Blair Conrad Oct 27 '08 at 14:56

2 Answers

vote up 12 vote down check

Yes, there is StringIO:

import StringIO
import sys


sys.stdout = StringIO.StringIO()
print "foo", "bar", "baz"
s = sys.stdout.getvalue()
link|flag
That's it. Thanks. – CAdaker Oct 27 '08 at 14:23
vote up 2 vote down

For better performance, note that you can also use cStringIO. But also note that this isn't very portable to python 3.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.