Topic: Concatenate strings (1 of 3), Read 32 times
Conf: VEDIT User Applications
From: Daniel Bliss
Date: Monday, April 23, 2007 03:10 PM

Hello Experienced VEDITers:

Just a point of learning about registers in VEDIT, I suppose
there's no way to shorten...

Reg_Set(10, ' , " ',APPEND)
Reg_Set(10,@98,APPEND)
Reg_Set(10,' " ',APPEND)

where T-reg 98 stores a string gotten from text in a buffer.

to something like this...

Reg_Set(10, ' , " ' [Concat operator] @98 [Concat operator] ' " ')

I searched manuals and conferences, but couldn't find a previous relevant topic.

Thanks for your help.
Dan Bliss

 


Topic: Re: Concatenate strings (2 of 3), Read 34 times
Conf: VEDIT User Applications
From: Ted Green
Date: Monday, April 23, 2007 08:10 PM

At 03:08 PM 4/23/2007, you wrote:
>From: "Daniel Bliss"
>
>Hello Experienced VEDITers:
>
>Just a point of learning about registers in VEDIT, I suppose
>there's no way to shorten...
>
>Reg_Set(10, ',"',APPEND)
>Reg_Set(@98,APPEND)
>Reg_Set('"',APPEND)
>
>where T-reg 98 stores a string gotten from text in a buffer.

No, there is no other way to concatenate strings in the current macro language.

Ted.

 


Topic: Re: Concatenate strings (3 of 3), Read 40 times
Conf: VEDIT User Applications
From: Daniel Bliss
Date: Monday, April 23, 2007 09:05 PM

Wow, you're quick.

I must compliment you on your Vedit documentation. By and large it's sufficiently clear and complete that I need only confirm what I already suspect is the correct answer on a few odd questions.

Thanks again,
Dan Bliss