The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
 All Forums
 Origin Forum for Programming
 LabTalk Forum
 backslash

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Anti-Spam Code:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkUpload FileInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
jmbeaujour Posted - 11/11/2013 : 2:08:20 PM
Origin Ver. and Service Release (Select Help-->About Origin): 8.6
Operating System: WinXP

Hi,
I am trying to build the path to a subfolder.
Everytime I concatenate a string with "\", the concatenation does not work properly. I have tried double backslash without success.
For example:
string str$="C:\data";
string path$= str$+"\"
There is no output
If I try
string path$= str$+"\\"
The output is then: "C:\data\\"
if
1   L A T E S T    R E P L I E S    (Newest First)
greg Posted - 11/12/2013 : 3:43:53 PM
Your first example works:

string str$ = "C:\data";
string path$ = str$ + "\";

After executing those two lines, the value of path$ will be "C:\data\".

The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000