1. How can I add two string?
- Posted by Jason Valdron <blackwind at rogers.com> Jul 12, 2005
- 451 views
Hi, Can someone tell me how to add two string together? I have a directory string called B and a filename string called X. I want to put them in the string C. Can someone help me please? I'm kinda noob... lol
2. Re: How can I add two string?
- Posted by cklester <cklester at yahoo.com> Jul 12, 2005
- 435 views
Jason Valdron wrote: > > Can someone tell me how to add two string together? > I have a directory string called B and a filename string called X. > I want to put them in the string C. Here's an example: sequence b, c, x b = "c:\\windows" -- note the required escaped slash x = "myfile.dat" c = b & "\\" & x -=ck "Programming in a state of EUPHORIA." http://www.cklester.com/euphoria/
3. Re: How can I add two string?
- Posted by don cole <doncole at pacbell.net> Jul 12, 2005
- 447 views
Jason Valdron wrote: > > Hi, > Can someone tell me how to add two string together? > I have a directory string called B and a filename string called X. > I want to put them in the string C. > > Can someone help me please? I'm kinda noob... lol > sequence C,B,x C=B&x C="myDir" & "Filename" don cole SF
4. Re: How can I add two string?
- Posted by don cole <doncole at pacbell.net> Jul 12, 2005
- 471 views
I'm sorry cklester I didn't notice at first reading, but you did put the ampersan in there. Also I forgot the all important "\\". Don Cole