new line in squeak

2019-06-22 19:21发布

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

4条回答
冷血范
2楼-- · 2019-06-22 19:35

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.

查看更多
来,给爷笑一个
3楼-- · 2019-06-22 19:40

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...

查看更多
▲ chillily
4楼-- · 2019-06-22 19:52

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.

查看更多
Deceive 欺骗
5楼-- · 2019-06-22 19:55

Use the following:

Transcript cr

You can use it after a value via a cascade:

Transcript show: 123; cr
查看更多
登录 后发表回答