Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Beauty? What's that? -- Larry Wall in <199710221937.MAA25131@wall.org>


devel / comp.lang.rexx / How to suppress 'CRLF' in a SAY instruction ?

SubjectAuthor
* How to suppress 'CRLF' in a SAY instruction ?Jean-Louis Tourné
`* Re: How to suppress 'CRLF' in a SAY instruction ?Rick McGuire
 `- Re: How to suppress 'CRLF' in a SAY instruction ?Jean-Louis Tourné

1
How to suppress 'CRLF' in a SAY instruction ?

<e09e4725-9f50-4d1a-a765-96cccc9d19ccn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=71&group=comp.lang.rexx#71

  copy link   Newsgroups: comp.lang.rexx
X-Received: by 2002:ad4:5bef:0:b0:4e6:ca24:d339 with SMTP id k15-20020ad45bef000000b004e6ca24d339mr892913qvc.115.1674549373112;
Tue, 24 Jan 2023 00:36:13 -0800 (PST)
X-Received: by 2002:a05:6830:10cc:b0:686:a353:1a4e with SMTP id
z12-20020a05683010cc00b00686a3531a4emr907405oto.221.1674549372845; Tue, 24
Jan 2023 00:36:12 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.rexx
Date: Tue, 24 Jan 2023 00:35:32 -0800 (PST)
Injection-Info: google-groups.googlegroups.com; posting-host=2a02:1811:3980:2000:f0dd:dfc1:2269:ef9f;
posting-account=qTferAoAAACthXHZRZpCgofsQV-frL79
NNTP-Posting-Host: 2a02:1811:3980:2000:f0dd:dfc1:2269:ef9f
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <e09e4725-9f50-4d1a-a765-96cccc9d19ccn@googlegroups.com>
Subject: How to suppress 'CRLF' in a SAY instruction ?
From: jeanlouis.tourne@gmail.com (Jean-Louis Tourné)
Injection-Date: Tue, 24 Jan 2023 08:36:13 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Jean-Louis Tourné - Tue, 24 Jan 2023 08:35 UTC

Hello,

Is it possible in a rexx SAY instruction to suppress the CRLF character to avoid that the next SAY appears on a new line ?
I would like that the result of the second SAY instruction follows, on the same line, the result of the first SAY instruction.
Exemple :
SAY 'first line'
SAY 'second line'

Would appear as :
first line second line

and not as :
first line
second line

Thank you

Re: How to suppress 'CRLF' in a SAY instruction ?

<ffc366ab-93cf-489b-8727-30dc0cadcc6en@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=72&group=comp.lang.rexx#72

  copy link   Newsgroups: comp.lang.rexx
X-Received: by 2002:a37:b005:0:b0:706:5055:fa2c with SMTP id z5-20020a37b005000000b007065055fa2cmr964336qke.292.1674565797437;
Tue, 24 Jan 2023 05:09:57 -0800 (PST)
X-Received: by 2002:a05:6870:9a25:b0:160:31c2:3dc5 with SMTP id
fo37-20020a0568709a2500b0016031c23dc5mr319539oab.296.1674565797158; Tue, 24
Jan 2023 05:09:57 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.rexx
Date: Tue, 24 Jan 2023 05:09:56 -0800 (PST)
In-Reply-To: <e09e4725-9f50-4d1a-a765-96cccc9d19ccn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=24.151.69.205; posting-account=gi3GZAoAAACIbgt-QdEIHlbWxwNtCjVA
NNTP-Posting-Host: 24.151.69.205
References: <e09e4725-9f50-4d1a-a765-96cccc9d19ccn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <ffc366ab-93cf-489b-8727-30dc0cadcc6en@googlegroups.com>
Subject: Re: How to suppress 'CRLF' in a SAY instruction ?
From: object.rexx@gmail.com (Rick McGuire)
Injection-Date: Tue, 24 Jan 2023 13:09:57 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Rick McGuire - Tue, 24 Jan 2023 13:09 UTC

On Tuesday, January 24, 2023 at 3:36:13 AM UTC-5, Jean-Louis Tourné wrote:
> Hello,
>
> Is it possible in a rexx SAY instruction to suppress the CRLF character to avoid that the next SAY appears on a new line ?
> I would like that the result of the second SAY instruction follows, on the same line, the result of the first SAY instruction.
> Exemple :
> SAY 'first line'
> SAY 'second line'
use

call charout ,"first line '
say 'second line'

Note that I had to add a space to the literal for first line to create the separation.

>
> Would appear as :
> first line second line
>
> and not as :
> first line
> second line
>
> Thank you

Re: How to suppress 'CRLF' in a SAY instruction ?

<26fa31c1-09e2-4360-8047-8b3dd3b05305n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=73&group=comp.lang.rexx#73

  copy link   Newsgroups: comp.lang.rexx
X-Received: by 2002:a05:622a:5c0f:b0:3b6:3a58:911a with SMTP id gd15-20020a05622a5c0f00b003b63a58911amr983493qtb.350.1674572491557;
Tue, 24 Jan 2023 07:01:31 -0800 (PST)
X-Received: by 2002:a05:6870:288a:b0:15f:3b7b:afc4 with SMTP id
gy10-20020a056870288a00b0015f3b7bafc4mr1891953oab.78.1674572490420; Tue, 24
Jan 2023 07:01:30 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.rexx
Date: Tue, 24 Jan 2023 07:01:30 -0800 (PST)
In-Reply-To: <ffc366ab-93cf-489b-8727-30dc0cadcc6en@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2a02:1811:3980:2000:d559:c5da:ac0f:b45f;
posting-account=qTferAoAAACthXHZRZpCgofsQV-frL79
NNTP-Posting-Host: 2a02:1811:3980:2000:d559:c5da:ac0f:b45f
References: <e09e4725-9f50-4d1a-a765-96cccc9d19ccn@googlegroups.com> <ffc366ab-93cf-489b-8727-30dc0cadcc6en@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <26fa31c1-09e2-4360-8047-8b3dd3b05305n@googlegroups.com>
Subject: Re: How to suppress 'CRLF' in a SAY instruction ?
From: jeanlouis.tourne@gmail.com (Jean-Louis Tourné)
Injection-Date: Tue, 24 Jan 2023 15:01:31 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2337
 by: Jean-Louis Tourné - Tue, 24 Jan 2023 15:01 UTC

Le mardi 24 janvier 2023 à 14:09:58 UTC+1, Rick McGuire a écrit :
> On Tuesday, January 24, 2023 at 3:36:13 AM UTC-5, Jean-Louis Tourné wrote:
> > Hello,
> >
> > Is it possible in a rexx SAY instruction to suppress the CRLF character to avoid that the next SAY appears on a new line ?
> > I would like that the result of the second SAY instruction follows, on the same line, the result of the first SAY instruction.
> > Exemple :
> > SAY 'first line'
> > SAY 'second line'
> use
>
> call charout ,"first line '
> say 'second line'
>
> Note that I had to add a space to the literal for first line to create the separation.
> >
> > Would appear as :
> > first line second line
> >
> > and not as :
> > first line
> > second line
> >
> > Thank you

Thank you, exactly what I was looking for.

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor