Dan H Posted December 7, 2006 Report Share Posted December 7, 2006 I can easily seperate a comma deliminated text file out into it's component variables... ie "test1,test2,test3,test4" into T1, T2, T3, T4 by using the set interger value by posistion of text with value of ",". My current problem is that I need to do the same for "test1 test2 test3 test4" but don't know how to search for value equal to the TAB. Does anybody know how I can do this? Or know if a app that will convert a tab deliminated file to common diliminated quickly? Quote Link to comment Share on other sites More sharing options...
joe Posted December 7, 2006 Report Share Posted December 7, 2006 Use the Set Variable to ASCII Character command. The resulting string can be used like any other string. In your case, the string created will be a TAB character, which is ASCII 009. Variable Set %T9% to ASCII Char of 009 <ASCIIC:9:1:009> Quote Link to comment Share on other sites More sharing options...
Dan H Posted December 7, 2006 Author Report Share Posted December 7, 2006 Works perfectly! Thanks Joe! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.