Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Count occurences of the word without it repeating Post 303036136 by Aurimas on Saturday 15th of June 2019 10:35:10 AM
Old 06-15-2019
Understood, but when I added field seperator and tried $6 as well as other values till $12 no one gave me 8. Where might be the problem?
 

10 More Discussions You Might Find Interesting

1. Web Development

How to find all occurences of word?

Hi, For example lets consider i have word like this:cell I have some text that is stored in table. These are few sentences. TRAP also regulates translation of trpE by promoting formation of an cell. In addition initiation of pabA, trpP and ycbK by directly blocking cells. I... (0 Replies)
Discussion started by: vanitham
0 Replies

2. Shell Programming and Scripting

no of occurences of q word

hi I hace a string "abc,def,ghi,abc,def ,ghi,abc,def,ghi,abc,def ,ghi,abc" i replaced commas with spaces, now i want to calculate nof occurences of "abc" word. thanks in advance Satya (6 Replies)
Discussion started by: Satyak
6 Replies

3. UNIX for Dummies Questions & Answers

How to count the occurences of a specific word in a file in bash shell

Hello, I want to count the occurences of a specific word in a .txt file in bash shell. Can somebody help me pleaze?? Thanks!!! (2 Replies)
Discussion started by: mskart
2 Replies

4. Shell Programming and Scripting

Perl - Count occurences

I have enclosed the script. I am able to find the files that contain my search string but when I try to count the occurences within the file I get zero always. Any help on this. #!/usr/bin/perl my $find = $ARGV; my $replace = $ARGV; my $glob = $ARGV; @filelist = <*$glob>; # process each... (22 Replies)
Discussion started by: TimHortons
22 Replies

5. UNIX for Dummies Questions & Answers

Count number of occurences of a word

I want to count the number of occurences of say "200" in a file but that file also contains various stuff including dtaes like 2007 or smtg like 200.1 so count i am getting by doing grep -c "word" file is wrong Please help!!!!! (8 Replies)
Discussion started by: shikhakaul
8 Replies

6. Shell Programming and Scripting

Awk to count occurences

Hi, i am in need of an awk script to accomplish the following: Input table looks like: Student1 arts Student2 science Student3 arts Student4 science Student5 science Student6 science Student7 science Student8 science Student9 science Student10 science Student11 science... (8 Replies)
Discussion started by: saint2006
8 Replies

7. Shell Programming and Scripting

Count occurences of string

Hi, Please help me in finding the number of occurences of the string. Example: Apple, green, blue, Apple, Orange, green, blue are the strings can be even in the next line. The o/p should look as: Word Count ----- ----- Apple 2 green 2 Orange 1 blue 2 Thanks (2 Replies)
Discussion started by: acc888
2 Replies

8. UNIX for Dummies Questions & Answers

Count pattern occurences

hi, I have a text..and i need to find a pattern in the text and count to the no of times the pattern occured. i have used grep command ..but the problem is , it shows the occurrences of the pattern but doesn't count no of times the pattern occuries. (5 Replies)
Discussion started by: nvnni
5 Replies

9. Shell Programming and Scripting

awk count occurences

line number:status, market, keystation 1,SENT,EBS,1 : 1 2,DONE,REU,1 : 1 3,SENT,EBS,2 : 1 4,DONE,EBS,1 : 0 5,SENT,EBS,2 : 0 6,SENT,EBS,2 : 0 7,SENT,EBS,2 : 0 8,SENT,EBS,1 : 1 for each status, market combination I want to keep a tally of active orders. i.e if an order is SENT, then +1, if... (8 Replies)
Discussion started by: Calypso
8 Replies

10. Shell Programming and Scripting

Count the occurences of strings

I have some text files in a folder f1 with 10 columns. The first five columns of a file are shown below. aab abb 263-455 263 455 aab abb 263-455 263 455 aab abb 263-455 263 455 bbb abb 26-455 26 455 bbb abb 26-455 26 455 bbb aka 264-266 264 266 bga bga 230-232 230 ... (10 Replies)
Discussion started by: gomez
10 Replies
Module::ExtractUse(3pm) 				User Contributed Perl Documentation				   Module::ExtractUse(3pm)

NAME
Module::ExtractUse - Find out what modules are used VERSION
version 0.27 SYNOPSIS
use Module::ExtractUse; # get a parser my $p=Module::ExtractUse->new; # parse from a file $p->extract_use('/path/to/module.pm'); # or parse from a ref to a string in memory $p->extract_use($string_containg_code); # use some reporting methods my $used=$p->used; # $used is a HASHREF print $p->used('strict') # true if code includes 'use strict' my @used=$p->array; my $used=$p->string; DESCRIPTION
Module::ExtractUse is basically a Parse::RecDescent grammar to parse Perl code. It tries very hard to find all modules (whether pragmas, Core, or from CPAN) used by the parsed code. "Usage" is defined by either calling "use" or "require". Methods new my $p=Module::ExtractUse->new; Returns a parser object extract_use $p->extract_use('/path/to/module.pm'); $p->extract_use($string_containg_code); Runs the parser. $code_to_parse can be either a SCALAR, in which case Module::ExtractUse tries to open the file specified in $code_to_parse. Or a reference to a SCALAR, in which case Module::ExtractUse assumes the referenced scalar contains the source code. The code will be stripped from POD (using Pod::Strip) and split on ";" (semicolon). Each statement (i.e. the stuff between two semicolons) is checked by a simple regular expression. If the statement contains either 'use' or 'require', the statment is handed over to the parser, who then tries to figure out, what is used or required. The results will be saved in a data structure that you can examine afterwards. You can call "extract_use" several times on different files. It will count how many files where examined and how often each module was used. Accessor Methods Those are various ways to get at the result of the parse. Note that "extract_use" returns the parser object, so you can say print $p->extract_use($code_to_parse)->string; used my $used=$p->used; # $used is a HASHREF print $p->used('strict') # true if code includes 'use strict' If called without an argument, returns a reference to an hash of all used modules. Keys are the names of the modules, values are the number of times they were used. If called with an argument, looks up the value of the argument in the hash and returns the number of times it was found during parsing. This is the preferred accessor. string print $p->string($seperator) Returns a sorted string of all used modules, joined using the value of $seperator or using a blank space as a default; Module names are sorted by ascii value (i.e by "sort") array my @array = $p->array; Returns an array of all used modules. arrayref my $arrayref = $p->arrayref; Returns a reference to an array of all used modules. Surprise! files Returns the number of files parsed by the parser object. RE-COMPILING THE GRAMMAR If - for some reasons - you need to alter the grammar, edit the file grammar and afterwards run: perl -MParse::RecDescent - grammar Module::ExtractUse::Grammar Make sure you're in the right directory, i.e. in .../Module/ExtractUse/ EXPORTS
Nothing. SEE ALSO
Parse::RecDescent, Module::ScanDeps, Module::Info, Module::CPANTS::Analyse AUTHOR
Thomas Klausner <domm@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Thomas Klausner. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-04-14 Module::ExtractUse(3pm)
All times are GMT -4. The time now is 06:13 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy