|
Re: echo output $nm = 123
$x = $nm,"$nm `bSTRING"
You dont need echo and `b is a backspace. If you use "" variables are
expanded.
"Jens Diekers" <JensDiekers@discussions.microsoft.com> wrote in message
news:CEA606D9-F2FF-45ED-9533-2CD77929F0B0@microsoft.com...
> Hello again,
>
> i think i have another basic question.
>
> i will make a array like this:
>
> $mn = 123
> $x = echo $mn, ($mn)STRING...
>
> i want that my out looks like this:
> 123
> 123STRING..., but the STRING... is interpreted as the third part of the
> array. It looks like this
> 123
> 123
> STRING...
>
>
> What can i do?
>
> THX |