6

i want to do something like this: Transcript show: '\n'. how?

4 Answers4

11

Use the following:

Transcript cr

You can use it after a value via a cascade:

Transcript show: 123; cr
4

From my (long) experience, missing character escapes are one of the few things that are missing in Smalltalk. For streaming, solutions using cr, tab etc. are ok.

However, if you need a particular control character in a string, this may be ugly and hard to read (using "streamContents:", or "withCRs" to add a newLine). Alternatively, you may want to use one of the (non-standard) string expansion mechanisms. For example, in VisualWorks or Smalltalk/X, you can write (if I remember correctly):

'someString with newline<n>and<t>tabs' expandMacros

or even with printf-like slicing of other object's printStrings:

'anotherString<n><t>with newlines<n>and<t>tabs and<p>' expandMacrosWith:(Float pi)

I guess, there is something similar in Squeak and V'Age as well.

But, be aware: these expansions are done at execution time. So you may encounter a penalty when heavily using them on many strings.

blabla999
  • 3,130
  • 22
  • 24
  • The first one works in Pharo, the second one causes an error, but that may be a bug; still investigating... – Sean DeNigris Aug 07 '11 at 13:57
  • The penalty can be mitigated if you express your intention to execute only once with ['someString with newlineandtabs' expandMacros] once See [When you come Back](http://www.cincomsmalltalk.com/userblogs/travis/blogView?showComments=true&printTitle=When_You_Come_Back&entry=3346567529) – aka.nice Jun 14 '12 at 15:52
4

The character itself can be reached as Character cr. So, you could also do this:

Transcript show: 'Bla! , Character cr asString.

But of course,

Transcript show: 'Bla!' ; cr.

is way more elegant.

nes1983
  • 15,209
  • 4
  • 44
  • 64
1

What I do as a convenience is add a method "line" to the String class:

line
    ^self, String lf

Then you can just say obj showSomething: 'Hello world!' line.

Or call it newline, endl, lf, etc...

Keegan Jay
  • 960
  • 2
  • 10
  • 18