How to use tab as spritter in text file. [modified]
-
Hi all you guys. I have been trying to use tab as spriter in text file. I declared the variable like this... char[] spriter = new Char[] { ' ', ',', ';', '"', '\\', '|'}; In the order i can sprit text with ' '(space) ,(comma) : (semicolon) and others as in the array. but I don't how to declare the TAB. Anybody who knows this please help me. Thank you very much. -- modified at 5:29 Monday 4th June, 2007
junior boy
-
Hi all you guys. I have been trying to use tab as spriter in text file. I declared the variable like this... char[] spriter = new Char[] { ' ', ',', ';', '"', '\\', '|'}; In the order i can sprit text with ' '(space) ,(comma) : (semicolon) and others as in the array. but I don't how to declare the TAB. Anybody who knows this please help me. Thank you very much. -- modified at 5:29 Monday 4th June, 2007
junior boy
Try '\t'
-
Hi all you guys. I have been trying to use tab as spriter in text file. I declared the variable like this... char[] spriter = new Char[] { ' ', ',', ';', '"', '\\', '|'}; In the order i can sprit text with ' '(space) ,(comma) : (semicolon) and others as in the array. but I don't how to declare the TAB. Anybody who knows this please help me. Thank you very much. -- modified at 5:29 Monday 4th June, 2007
junior boy
Or 8 space is equal to 1 Tab. 8 space or \t
Parwej Ahamad g_parwez@rediffmail.com
-
Or 8 space is equal to 1 Tab. 8 space or \t
Parwej Ahamad g_parwez@rediffmail.com
Thank you very much all you guys. Actually I have tried to use \t but when I declared I used '\\t' because I am using C# .net but I got error and I was wrong. Now i know more about \ I am really preciated your help. Thank you million :)
junior boy
-
Thank you very much all you guys. Actually I have tried to use \t but when I declared I used '\\t' because I am using C# .net but I got error and I was wrong. Now i know more about \ I am really preciated your help. Thank you million :)
junior boy
Check with 8 space ( '8 space' ) this equal with 1 tab.
Parwej Ahamad g_parwez@rediffmail.com