vote up 0 vote down star

(Almost exact duplicate of http://stackoverflow.com/questions/408469/keeping-original-format-post-passing-through-awk submitted by same person.)

I have a simple question pertaining to gawk, illustrated below:

  1 int blah (void)
  2 {
  3         if (foo) {
  4                 printf ("blah\n");
  5         }       
  6         return 0;
  7 }

Using the following gawk code - using gensub() to maintain original formatting:

 gawk '{ print gensub($1, "\t", 1) }' ./sample_code.out

     int blah (void)
     {
             if (foo) {
                     printf ("blah\n");
             }       
             return 0;
     }

How can I use gawk or awk (maybe with regular expressions) to remove previous whitespace before field $1 (^ )

Illustrated below:

 int blah (void)
 {
         if (foo) {
                 printf ("blah\n");
         }       
         return 0;
 }

Kind regards in advance

flag

$1 never contains whitespace. You example shows that you add whitespace but in the text, you say that you want to remove it. Please edit your question to make clear what you get and what you want to do. – Aaron Digulla Jan 3 at 14:08
He wants to remove the numbers, stripping all leading space while preserving the formatting – Vinko Vrsalovic Jan 3 at 14:22
(At least that's my interpretation of the question :-) ) – Vinko Vrsalovic Jan 3 at 14:25
Thanks for your suggestions guys! :) Actually, please excess my lack of understanding - as I'm new to AWK. Vinko, is correct - Thanks :) – Aaron Jan 3 at 14:33

3 Answers

vote up 1 vote down check

This works, but in the knowledge that you'll always want to strip 3 spaces.

vinko@parrot:~$ cat foo.c
  1 int blah (void)
  2 {
  3         if (foo) {
  4                 printf ("blah\n");
  5         }
  6         return 0;
  7 }

vinko@parrot:~$ gawk '{ print gensub(/^   /,"",1,gensub($1, "", 1)) }' foo.c    
int blah (void)
{
        if (foo) {
                printf ("blah\n");
        }
        return 0;
}

link|flag
vote up 0 vote down

This strikes me as being a case of 'wrong tool for the job'. I'd use sed`:

sed 's/^[ <tab>]*//' sample.out

Now, if the problem is all about the inner-most details of awk, this may be no help; if the problem is to get spaces removed, it is quicker and (at least arguably) simpler.

link|flag
Hi Jonathan, first of all, thanks for your answer. Yes - it's possible to use sed - but using this implementation, original formatting is removed – Aaron Jan 3 at 18:10
vote up 0 vote down
awk '{sub(/^[ \t]+/, ""); print}'

This is from the famous awk 1 liners list, can be found here: http://student.northpark.edu/pemente/awk/awk1line.txt

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.