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 ,
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 ,