Delimiter checking


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Delimiter checking
# 1  
Old 12-19-2010
Delimiter checking

Hi,

I'm new to Unix. I have a file with 100 records.
I need to count the number of delimiter(,) in each row.
Please tell me how to count the delimiters for each row in a text file.
# 2  
Old 12-19-2010
Depending on your operating system and shell this should do. It will work in BASH and KSH, but maybe not plain SH, where arithmetic is a lot more awkward.

Code:
LINE=0

while read LINE
do
        # LINE2 is LINE with all "," stripped out
        LINE2="${LINE//,/}"
        # Length with ,
        LEN1="${#LINE}"
        # Length with , stripped out
        LEN2="${#LINE2}"
        echo "Line $((LINE++)) has $((LEN1-LEN2)) seperators"
done < inputfile

# 3  
Old 12-19-2010
Code:
awk -F , '{print "line " NR " has " NF-1 " seperator(s)"}' infile

# 4  
Old 12-19-2010
Code:
#!/usr/local/bin/perl

use strict;
use warnings;

open (FILE, "<infile") or die $!;

while (<FILE>) {
    print "Line $. has ",  $_ =~ tr/,//, " delimiters\n";
}
close FILE;

or as a Perl one liner
Code:
perl -lne 'print "Line $. has ",  $_ =~ tr/,//, " delimiters"' infile


Last edited by fpmurphy; 12-19-2010 at 11:06 PM..
# 5  
Old 12-20-2010
Instead of printing all lines, and delimiter count.. you may be looking to pring only lines which has lesser delimeters than expected... which can be done using awk if,

Code:
 
awk -F , '{if (NF < 3 ) print "line " NR " has " NF-1 " seperator(s)";}' infile

Please change the number 3 to anything that you wish, according to the number of delimiters you need.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl Code to change file delimiter (passed as argument) to bar delimiter

Hi, Extremely new to Perl scripting, but need a quick fix without using TEXT::CSV I need to read in a file, pass any delimiter as an argument, and convert it to bar delimited on the output. In addition, enclose fields within double quotes in case of any embedded delimiters. Any help would... (2 Replies)
Discussion started by: JPB1977
2 Replies

2. Shell Programming and Scripting

Shell script to put delimiter for a no delimiter variable length text file

Hi, I have a No Delimiter variable length text file with following schema - Column Name Data length Firstname 5 Lastname 5 age 3 phoneno1 10 phoneno2 10 phoneno3 10 sample data - ... (16 Replies)
Discussion started by: Gaurav Martha
16 Replies

3. SCO

Stop boot system at "Checking protected password and checking subsystem databases"

Hi, (i'm sorry for my english) I'm a problem on boot sco unix 5.0.5 open server. this stop at "Checking protected password and checking subsystem databases" (See this image ) I'm try this: 1) http://www.digipedia.pl/usenet/thread/50/37093/#post37094 2) SCO: SCO Unix - Server hangs... (9 Replies)
Discussion started by: buji
9 Replies

4. Shell Programming and Scripting

how to get everything before the last delimiter?

hi all, i have a string with a number of "/"s as delimiter. and i want everything BEFORE the last delimiter i know to use basename to get everything after the last delimiter. thx a lot! (2 Replies)
Discussion started by: sunnydanniel
2 Replies

5. Shell Programming and Scripting

How to cut by delimiter, and delimiter can be anything except numbers?

Hi all, I have a number of strings like below: //mnt/autocor/43°13'(33")W/ and i'm trying to get the numbers in this string, for example 431333 please help thanks ahead (14 Replies)
Discussion started by: sunnydanniel
14 Replies

6. Shell Programming and Scripting

Help regarding the delimiter

Hi, I am trying to load data from a file to oracle DB. The file am using has a ";" as a delimiter. While I load the file, I want to check whether the file is having the correct delimiter or not. if not, the file should not be processed. Is there any way that i could handle this scenario using... (3 Replies)
Discussion started by: smileyreddy
3 Replies

7. Shell Programming and Scripting

delete delimiter

Hi All, I wanted to replace | to space from 3rd occurence onwards: I Used below: echo "a|b|c|d|e" |sed 's/\|/ /3/g' Got output: a|b|c d|e expecting Output: a|b|c d e (7 Replies)
Discussion started by: Jairaj
7 Replies

8. Shell Programming and Scripting

Substring based on delimiter, finding last delimiter

Hi, I have a string like ABC.123.XYZ-A1-B2-P1-C4. I want to delimit the string based on "-" and then get result as only two strings. One with string till last hyphen and other with value after last hyphen... For this case, it would be something like first string as "ABC.123.XYZ-A1-B2-P1" and... (6 Replies)
Discussion started by: gupt_ash
6 Replies

9. UNIX for Dummies Questions & Answers

Delimiter

I am having the following file. I need to insert a delimiter in this file. I used sed but its not working. AAABBB 9 JJJ AAABBC 9 TTTTT AAABBA 8 JJJ AAABBC 7 TTTTT AAABBC 6 TTTTT Now i want the output file as: AAA|BBB| |9| |JJJ| AAA|BBC| |9| | |TTTTT| (3 Replies)
Discussion started by: sivakumar.rj
3 Replies

10. Shell Programming and Scripting

from - to delimiter

hey guys can you please help me out, i'm having problem in cutting strings. I need a delimiter to cut string. sample a.txt "ID", "1234" , "iam bighippo", "help!" "ID", "1235" , "again0", "xxxxxxx1" "ID", "1236" , "again1", "xxxxxxx2" "ID", "1237" , "again2", "xxxxxxx3" how do... (6 Replies)
Discussion started by: bighippo
6 Replies
Login or Register to Ask a Question