two String concatenation in pharo

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

two String concatenation in pharo

shawon58
As i got idea that
*LibC system: 'D:\DEV_FreeCAD\build\bin\makebt.exe ', a asString*   is
worked but now i want to send two data like
*LibC system: 'D:\DEV_FreeCAD\build\bin\makebt.exe ', a asString, b
asString*   but not worked
can anyone have idea how to do it.

Thanks

<http://forum.world.st/file/t372453/a.png>



--
Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Reply | Threaded
Open this post in threaded view
|

Re: two String concatenation in pharo

CyrilFerlicot
On Wed, Jul 29, 2020 at 5:44 PM shawon58 <[hidden email]> wrote:
>
> As i got idea that
> *LibC system: 'D:\DEV_FreeCAD\build\bin\makebt.exe ', a asString*   is
> worked but now i want to send two data like
> *LibC system: 'D:\DEV_FreeCAD\build\bin\makebt.exe ', a asString, b
> asString*   but not worked
> can anyone have idea how to do it.
>

Hi,

Maybe you forgot the space.

LibC system: 'D:\DEV_FreeCAD\build\bin\makebt.exe ' , a asString , ' '
, b asString.

?

> Thanks
>
> <http://forum.world.st/file/t372453/a.png>
>
>
>
> --
> Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html
>


--
Cyril Ferlicot
https://ferlicot.fr

Reply | Threaded
Open this post in threaded view
|

Re: two String concatenation in pharo

shawon58