Sponsored Content
Top Forums UNIX for Dummies Questions & Answers awk: syntax for "if (array doesn't contain a particular index)" Post 302704715 by beca123456 on Saturday 22nd of September 2012 09:09:44 PM
Old 09-22-2012
You are right agama. It is not really clear.

I try with a precise example:

I need to convert every second line of the input starting from the first letter, then starting from the second letter, then the third, ..., and finally starting from the letter before the last one (according to the conversion table in the BEGIN section).

input:
Code:
%line1
abcdef
%line2
...

in order to get this ouput:
Code:
line1|135   # starting from the first letter (i.e. "abcdef")
line1|24X   # starting from the second letter (i.e. "bcdef")
line1|35     # starting from the third letter (i.e. "cdef")
line1|4X     # starting from the fourth letter (i.e. "def")
line1|5       # starting from the fifth letter (i.e. "ef")
line2|...

I wanted to do that with 2 different approaches, just to be familiar with awk user-defined function and the function getline:

1) using an increment in a function called "convert(letter)" with only one argument, and use the result as a variable that I could use in the rest of the script.
This is the topic I posted in a different thread:https://www.unix.com/unix-dummies-que...program-2.html

2) not using an increment in the function called "convert(letter, start)" with two arguments (the string to convert + the position to start), and redirect the results from the script to an output file. From this file I wanted to use the getline function to redirect it from the script and keep processing it.
This is the topic of this thread.

But it appeared that none of these strategies work !!!

For the purpose of this thread I focused on using getline function (2nd strategy).
I tried:

Code:
BEGIN {RS="%"; ORS="\n"; OFS="|"; conv["ab"]="1"; conv["bc"]="2"; conv["cd"]="3"; conv["de"]="4"; conv["ef"]="5"}

     
    function convert(letter, start){
        number = ""
        ss = substr(letter, start, 2) 
        while( ss != "" ){
            number = number (ss in conv ? conv[ss] : "X")
            start = start + 2;
            ss = substr(letter, start, 2)
        }
        return number
    }


NR==1{next}
	
NR>1{
            sub("\n","|",$0)

           { 
                l = length($2)
                for(i=1; i<=(l-1);  i++){
                    print convert($2, i) > "track.txt"     # redirect output to a file here
                }
                close("track.txt")                              # according to your suggestion
           }
}

{
    RS="\n"
    while(0< (getline < "track.test")){
        print $2}
}

The output I obtain with this code is messy (a mix between the original input with no FS, RS...)

Last edited by beca123456; 09-22-2012 at 10:18 PM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Awk Syntax Error "!~"

This is my Awk command. direct_count=`awk -F; 'BEGIN { direct_count=0 } $16 !~ /(PBLON|PBNY)/ || $18 !~ /(PBLON|PBNY)/ { direct_count++ } END { print direct_count }' ls.txt` I get a syntax error. BEGIN { direct_count=0 } $16 !~ /(PBLON|PBNY)/ || $18 !~ /(PBLON|PBNY)/ { direct_count++ }... (6 Replies)
Discussion started by: yongho
6 Replies

2. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies

3. Shell Programming and Scripting

acessing awk array element while getline < "file"

I am attempting to write a awk script that reads in a file after awk array elements are assigned and using those elements while reading in the new file. Does this make sense? /pattern/ {tst=$3} (( getline < "file" ) > 0 ) { x=x " "tst } When I print tst in the END statement it... (9 Replies)
Discussion started by: timj123
9 Replies

4. Shell Programming and Scripting

awk array starting with "ord"

I was writing a awk function and had a error I was wondering about. It revolves around a Multidimensional array starting with ord example: if ( _e == 5 ) { lmrb=$5 ; lmtb=$6 ; larb=$7 ; latb=$8 } ... (2 Replies)
Discussion started by: timj123
2 Replies

5. Shell Programming and Scripting

cat $como_file | awk /^~/'{print $1","$2","$3","$4}' | sed -e 's/~//g'

hi All, cat file_name | awk /^~/'{print $1","$2","$3","$4}' | sed -e 's/~//g' Can this be done by using sed or awk alone (4 Replies)
Discussion started by: harshakusam
4 Replies

6. Shell Programming and Scripting

Need to parse file "x" lines at a time ... awk array?

I have files that store multiple data points for the same device "vertically" and include multiple devices. It repeats a consistant pattern of lines where for each line: Column 1 is a common number for the entire file and all devices in that file Column 2 is a unique device number Column 3 is... (7 Replies)
Discussion started by: STN
7 Replies

7. Programming

C: Initialize "const" array from the "heap"

Hello, I am working on solving an NP-Complete problem, so it is very important that operations and data with limited integer-argument ranges be computed using immutable look-up-tables contained entirely in CPU cache. Retrieval of the look-up-table data must never leave the CPU once initially... (6 Replies)
Discussion started by: HeavyJ
6 Replies

8. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

9. HP-UX

DLT 7000 tape drive failing with "write error on a record in the index"

HP rp5450 (L2000) running HP-UX 11.11B Using DLT 7000 and DLT 4000 tape drives for nightly full backups Backup jobs created by SAM DLT 7000 cron entry is as follows: 00 2 * * 1-6 /usr/sam/lbin/br_backup DLT FULL Y /dev/rmt/0m /var/sam/graphLCAa17036 root Y 1 N > /var/sam/SAM_br_msgs 2>&1... (1 Reply)
Discussion started by: dreh99
1 Replies

10. Shell Programming and Scripting

how to use "cut" or "awk" or "sed" to remove a string

logs: "/home/abc/public_html/index.php" "/home/abc/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" how to use "cut" or "awk" or "sed" to get the following result: abc abc xyz xyz xyz (8 Replies)
Discussion started by: timmywong
8 Replies
All times are GMT -4. The time now is 02:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy