Replacing tabs with spaces


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Replacing tabs with spaces
# 1  
Old 10-03-2010
Replacing tabs with spaces

I want my program to replace tabs with spaces.1tab=4spaces.When i write aa(tab)aaa(tab)(tab)a(tab) it must show me aaxxaaaxxxxxaxxx. I think that my program works corectly but when a write aaa(tab)a it must show aaaxa but it is aaaxxxxxa.Please for help!!! That is my code:

Code:
#include <stdio.h>

int next_tabstop(int col) {
    return(4 - col%4);


}
int main() {
    int ch;
    int col=0;
    while((ch=fgetc(stdin))!=EOF){
        if(ch=='\n'){
            col=0;
            fputc(ch,stdout);
        } else{
            col++;
            if(ch!='\t'){
            fputc(ch,stdout);    
            }else {
                int sp=next_tabstop(col);
                col+=sp;
                while (sp>=0){
                 fputc('x',stdout);
                 sp--;
                }
                
            }
            
    }


    }


    return 0;
}


Last edited by pludi; 10-03-2010 at 06:21 AM..
# 2  
Old 10-03-2010
Quote:
Originally Posted by marto1914
I want my program to replace tabs with spaces.1tab=4spaces.When i write aa(tab)aaa(tab)(tab)a(tab) it must show me aaxxaaaxxxxxaxxx. I think that my program works corectly but when a write aaa(tab)a it must show aaaxa but it is aaaxxxxxa.Please for help!!! That is my code:

#include <stdio.h>

int next_tabstop(int col) {
return(4 - col%4);


}
int main() {
int ch;
int col=0;
while((ch=fgetc(stdin))!=EOF){
if(ch=='\n'){
col=0;
fputc(ch,stdout);
} else{
col++;
if(ch!='\t'){
fputc(ch,stdout);
}else {
int sp=next_tabstop(col);
col+=sp;
while (sp>=0){
fputc('x',stdout);
sp--;
}

}

}


}


return 0;
}
Hi
Try these:
to replace tabs with spaces (1 tab = 4 spaces)
Code:
perl -pi.bak -e "s/\t/    /g" infile

here: 1 tab = 'xxxx'
Code:
perl -pi.bak -e "s/\t/xxxx/g" infile

hope this helps
csn
This User Gave Thanks to cs_novice For This Post:
# 3  
Old 10-03-2010
Thank you, but i have to make a program for that function(school project).I edit my code, but now there is another problem. when i write on first line everything works corectly, but after that everything goes wrong.
Code:
#include <stdio.h>

int next_tabstop(int col) {
    return(4 - col%4);


}
int main() {
    int ch;
    int col=0;
    while((ch=fgetc(stdin))!=EOF){
        if(ch=='\n'){
            col=1;
            fputc(ch,stdout);
        } else{
            if(ch!='\t'){
            col++;
            fputc(ch,stdout);
            }else {
                int sp=next_tabstop(col);
                col+=sp;
                while (sp>0){
                 fputc('x',stdout);
                 sp--;
                }
                
            }
            
    }


    }


    return 0;
}

# 4  
Old 10-03-2010
Do not post classroom or homework problems in the main forums. Homework and coursework questions can only be posted in this forum under special homework rules.

Please review the rules, which you agreed to when you registered, if you have not already done so.

More-than-likely, posting homework in the main forums has resulting in a forum infraction. If you did not post homework, please explain the company you work for and the nature of the problem you are working on.

If you did post homework in the main forums, please review the guidelines for posting homework and repost.

Thank You.

The UNIX and Linux Forums.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to check string contain multiple tabs or spaces?

str contains tabs and multiple spaces str="hello world. How are you?" I want to check string start with hello world, and my code is: if ]world"* ]]; then echo "found" else echo "not found" fi Not work Other solution may work is to replace all tabs and... (4 Replies)
Discussion started by: cmdcmd
4 Replies

2. UNIX for Advanced & Expert Users

Vimrc creating tabs instead of spaces

I'm having trouble getting my vimrc to work the way I want it. For some reason after I hit enter it is creating tabs instead of spaces like I would expect. Here is an example of what I am talking about. $ = newline, ^I = tab. On the line of struct EDGETAG* q; I hit enter and it created a tab... (2 Replies)
Discussion started by: cokedude
2 Replies

3. Shell Programming and Scripting

replace spaces/tabs with delimiter |

Hi, I'm looking for a command that replaces spaces/tabs with pipe symbol and store the result to the same file instead of routing it to another file. infile outfile Thanks. (11 Replies)
Discussion started by: dvah
11 Replies

4. Shell Programming and Scripting

spaces to tabs - group with IP

hi buddies; i have a file.txt: Note: All the seperators are SPACE. 192.168.1.1 ParameterObject=1 Speech 1 ParameterObject=2 Speech 1 192.168.1.1 ParamFunction=1 UserID 1 (DEACTIVATED) Sector=1,Device=2,Unit=3 DeviceId 1 192.168.1.1 FeederCable=2B ... (18 Replies)
Discussion started by: gc_sw
18 Replies

5. Shell Programming and Scripting

clear extra spaces and tabs in a file

Any help appreciated Thanks sample input: > (extra spaces&tabs in here) test1 (extra spaces&tabs in here) 123.123.123.123 (extra spaces&tabs in here) abc (extra spaces&tabs in here) 123 --- < (extra spaces&tabs in... (3 Replies)
Discussion started by: goofist
3 Replies

6. UNIX for Dummies Questions & Answers

Problem with White spaces and tabs

Hi All, I am facing issues converting white spaces and tabs together in a file I am reading. Here is the command I am trying: tr -s ' '@ | sort -t@ +1n filename I guess the problem is that it is not converting the tabs to another delimiter. Also, I am supposed to accomplish this only using... (5 Replies)
Discussion started by: sh_kk
5 Replies

7. Shell Programming and Scripting

replacing all space seperates with tabs

hi, I have a file that is space separated at all columns. Basically what I want to do is replace all the space separations with column separations. Thanks kylle (1 Reply)
Discussion started by: kylle345
1 Replies

8. Shell Programming and Scripting

spaces or Tabs?

When formatting a script let's say for instance the following: case ${choice} in 1) vi ${tmp1}.tmp # overwrite the tmp1 var with any user changes cp ${tmp1}.tmp ${tmp1} ;; ... (2 Replies)
Discussion started by: llsmr777
2 Replies

9. Shell Programming and Scripting

replacing tabs to spaces from files

hi, I have some 50 C files in which for indentation of code some devlopers used tabs, but we dont want any tab used for indentation. I have following 2 need. 1) find tabs from all 50 files (which are in one directory ) 2) replace them with 4 spaces. Thanks Rishi (6 Replies)
Discussion started by: rishir
6 Replies

10. Shell Programming and Scripting

Converting tabs in to spaces.

Hi! I'm using SunOS 5.7 w/ Bash 2.01. Currently, I'm working on a script that will make it possible to find textfiles which match certain criteria. While I write this message, I had some brainfarts, found the answer myself :D and the question I had in mind is now no longer the question I... (3 Replies)
Discussion started by: indo1144
3 Replies
Login or Register to Ask a Question