Given a string [line], I want to replace all Tabs in [Line] with spaces.
I know the general code [line = line.Replace(tabs, spaces)] but I seem to be lacking in the syntax department. How would you define (tabs) in the above code?
line = line.Replace( \t , )
Anyway I try it generates errors, how do I illustrate \t as the Tab character to replace?
I know the general code [line = line.Replace(tabs, spaces)] but I seem to be lacking in the syntax department. How would you define (tabs) in the above code?
line = line.Replace( \t , )
Anyway I try it generates errors, how do I illustrate \t as the Tab character to replace?