simple expandMacros conversions

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

simple expandMacros conversions

Vincent Lesbros-2
Hi all,

'first line<n>seconde line' expandMacros
=>  'first line
seconde line'

Is there the opposite message to get 'first line<n>seconde line' from
'first line
seconde line' ?
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: simple expandMacros conversions

Steven Kelly
[vwnc] simple expandMacros conversions
'first line
seconde line' copyReplaceAll: '\' withCRs with: '<n>'
 
'\' withCRs is just a quick way to get a string containing a CR - you could also use "String with: Character cr"


From: [hidden email] on behalf of Vincent Lesbros
Sent: Sun 24/03/2013 14:49
To: [hidden email]
Subject: [vwnc] simple expandMacros conversions

Hi all,

'first line<n>seconde line' expandMacros
=>  'first line
seconde line'

Is there the opposite message to get 'first line<n>seconde line' from
'first line
seconde line' ?
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc