Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Using grep to find strings of certain lengths? Post 42771 by Simerian on Tuesday 4th of November 2003 04:49:44 AM
Old 11-04-2003
egrep will also work with a regexp that matches a specific length (i.e. [A-Za-z]{12,12})
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

want to grep only strings in a file?

Hai, Just want to print only alphanumeric in a file ex:- fdsdsklf#@^%$#hf output:- fdsdsklfhf plz, help me:o (5 Replies)
Discussion started by: balan_mca
5 Replies

2. Shell Programming and Scripting

Grep Multiple Strings

Hi, Can any one pelase tell me how to grep multiple strings from multiple files in a singel folder? grep -E "string1|string2|string3|string4|string..." its taking lots of time.. can any please tell me fast grep??? URGENT (10 Replies)
Discussion started by: durgaprasad
10 Replies

3. Shell Programming and Scripting

grep two strings in a file..

Hello All, I have a big file about 1000 lines. Now i am trying to grep a particular string and printing the lines from the string. say for example in 500th line i have the date as "Mon Wed 14 20:15:24 2010". now i in my case i need to grep the combination of the strings "Mon Wed 14" and the... (7 Replies)
Discussion started by: intiraju
7 Replies

4. UNIX for Dummies Questions & Answers

grep command to find multiple strings in multiple lines in a file.

I want to search files (basically .cc files) in /xx folder and subfolders. Those files (*.cc files) must contain #include "header.h" AND x() function. I am writing it another way to make it clear, I wanna list of *.cc files that have 'header.h' & 'x()'. They must have two strings, header.h... (2 Replies)
Discussion started by: ritikaSharma
2 Replies

5. Shell Programming and Scripting

Can't grep multiple strings

I have a script that periodically checks the Apache error_log to search for a specific error that causes it to hand and, if found, it restarts the service. I recently found another error that forces it to hand and won't serve pages until it is reset. What I'm trying to do is to get the script to... (3 Replies)
Discussion started by: cfjohnsn
3 Replies

6. Shell Programming and Scripting

Grep 2 same strings in a same line??

I have this code TrackingId:1362412470675;MSISDN:; INFO - number of clietns:3:Received response is: EMSResponse , protocolVersion=5, purchaseOptions=null, serviceData=ServiceData , screenData=CanvasData ]], title=null, titleResource=MessageResource], screenType=null]], serviceId=idBamboo,... (7 Replies)
Discussion started by: nikhil jain
7 Replies

7. Red Hat

Grep between two strings in shell

<cisco:subname> <cisco:sptp>Cisco PortA Series</cisco:sptp> <cisco:aliasNameList xsi:nil="true"/> <cisco: owner xsi:nil="true"/> <cisco:subportname> <cisco:cpt>Cisco SubPort B Series</cisco:cpt> ... (3 Replies)
Discussion started by: itsspy
3 Replies

8. Shell Programming and Scripting

Grep for strings

Hi, Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.94 Safari/537.36 How can I grep for the strings chrome and safari from a file, and if chrome print Chrome/40.0.2214.94 to a file and also count the number of times chrome is found? ... (4 Replies)
Discussion started by: cyberfrog
4 Replies

9. Shell Programming and Scripting

Grep strings for different cases

Hi All, Good morning I have a below code which is working & getting expected output. the problem in this code is it is executing 3 if conditions, my requirement is suppose if first condition is success then it should print echo statement & exit from if condition else if the 1st if condition... (4 Replies)
Discussion started by: sam@sam
4 Replies

10. UNIX for Beginners Questions & Answers

Grep: Retrieve two strings from one file to find them anyone on line in another file

I am having trouble matching *two* strings from one file anywhere in a line of a second file, and could use some help getting this figured out. My preference would be to use grep for this because I would like to take advantage of its -A option. The latter is due to the fact that I would like both... (2 Replies)
Discussion started by: jvoot
2 Replies
REGEXP(3)						   BSD Library Functions Manual 						 REGEXP(3)

NAME
regcomp, regexec, regsub, regerror -- obsolete 'regexp' regular expression handlers LIBRARY
Compatibility Library (libcompat, -lcompat) SYNOPSIS
#include <regexp.h> regexp * regcomp(const char *exp); int regexec(const regexp *prog, const char *string); void regsub(const regexp *prog, const char *source, char *dest); void regerror(const char *msg); DESCRIPTION
This interface is made obsolete by regex(3). It is available from the compatibility library, libcompat. The regcomp(), regexec(), regsub(), and regerror() functions implement egrep(1)-style regular expressions and supporting facilities. The regcomp() function compiles a regular expression into a structure of type regexp, and returns a pointer to it. The space has been allo- cated using malloc(3) and may be released by free(3). The regexec() function matches a NUL-terminated string against the compiled regular expression in prog. It returns 1 for success and 0 for failure, and adjusts the contents of prog's startp and endp (see below) accordingly. The members of a regexp structure include at least the following (not necessarily in order): char *startp[NSUBEXP]; char *endp[NSUBEXP]; where NSUBEXP is defined (as 10) in the header file. Once a successful regexec() has been done using the regexp(), each startp- endp pair describes one substring within the string, with the startp pointing to the first character of the substring and the endp pointing to the first character following the substring. The 0th substring is the substring of string that matched the whole regular expression. The others are those substrings that matched parenthesized expressions within the regular expression, with parenthesized expressions numbered in left- to-right order of their opening parentheses. The regsub() function copies source to dest, making substitutions according to the most recent regexec() performed using prog. Each instance of `&' in source is replaced by the substring indicated by startp[] and endp[]. Each instance of ' ', where n is a digit, is replaced by the substring indicated by startp[n] and endp[n]. To get a literal `&' or ' ' into dest, prefix it with `'; to get a literal `' preceding `&' or ' ', prefix it with another `'. The regerror() function is called whenever an error is detected in regcomp(), regexec(), or regsub(). The default regerror() writes the string msg, with a suitable indicator of origin, on the standard error output and invokes exit(3). The regerror() function can be replaced by the user if other actions are desirable. REGULAR EXPRESSION SYNTAX
A regular expression is zero or more branches, separated by `|'. It matches anything that matches one of the branches. A branch is zero or more pieces, concatenated. It matches a match for the first, followed by a match for the second, etc. A piece is an atom possibly followed by `*', `+', or `?'. An atom followed by `*' matches a sequence of 0 or more matches of the atom. An atom followed by `+' matches a sequence of 1 or more matches of the atom. An atom followed by `?' matches a match of the atom, or the null string. An atom is a regular expression in parentheses (matching a match for the regular expression), a range (see below), `.' (matching any single character), `^' (matching the null string at the beginning of the input string), `$' (matching the null string at the end of the input string), a `' followed by a single character (matching that character), or a single character with no other significance (matching that character). A range is a sequence of characters enclosed in `[]'. It normally matches any single character from the sequence. If the sequence begins with `^', it matches any single character not from the rest of the sequence. If two characters in the sequence are separated by `-', this is shorthand for the full list of ASCII characters between them (e.g. `[0-9]' matches any decimal digit). To include a literal `]' in the sequence, make it the first character (following a possible `^'). To include a literal `-', make it the first or last character. AMBIGUITY
If a regular expression could match two different parts of the input string, it will match the one which begins earliest. If both begin in the same place but match different lengths, or match the same length in different ways, life gets messier, as follows. In general, the possibilities in a list of branches are considered in left-to-right order, the possibilities for `*', `+', and `?' are con- sidered longest-first, nested constructs are considered from the outermost in, and concatenated constructs are considered leftmost-first. The match that will be chosen is the one that uses the earliest possibility in the first choice that has to be made. If there is more than one choice, the next will be made in the same manner (earliest possibility) subject to the decision on the first choice. And so forth. For example, '(ab|a)b*c' could match `abc' in one of two ways. The first choice is between `ab' and `a'; since `ab' is earlier, and does lead to a successful overall match, it is chosen. Since the `b' is already spoken for, the `b*' must match its last possibility--the empty string--since it must respect the earlier choice. In the particular case where no `|'s are present and there is only one `*', `+', or `?', the net effect is that the longest possible match will be chosen. So 'ab*', presented with `xabbbby', will match `abbbb'. Note that if 'ab*', is tried against `xabyabbbz', it will match `ab' just after `x', due to the begins-earliest rule. (In effect, the decision on where to start the match is the first choice to be made, hence subsequent choices must respect it even if this leads them to less-preferred alternatives.) RETURN VALUES
The regcomp() function returns NULL for a failure (regerror() permitting), where failures are syntax errors, exceeding implementation limits, or applying `+' or `*' to a possibly-null operand. SEE ALSO
ed(1), egrep(1), ex(1), expr(1), fgrep(1), grep(1), regex(3) HISTORY
Both code and manual page for regcomp(), regexec(), regsub(), and regerror() were written at the University of Toronto and appeared in 4.3BSD-Tahoe. They are intended to be compatible with the Bell V8 regexp(3), but are not derived from Bell code. BUGS
Empty branches and empty regular expressions are not portable to V8. The restriction against applying `*' or `+' to a possibly-null operand is an artifact of the simplistic implementation. Does not support egrep(1)'s newline-separated branches; neither does the V8 regexp(3), though. Due to emphasis on compactness and simplicity, it's not strikingly fast. It does give special attention to handling simple cases quickly. BSD
June 4, 1993 BSD
All times are GMT -4. The time now is 03:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy