Tagged Questions
4
votes
3answers
703 views
Why doesn't this pattern work in egrep?
Why can't I match the string
"1234567-1234567890"
with the given regular expression
\d{7}-\d{10}
with egrep from the shell like this:
egrep \d{7}-\d{10} file
?
3
votes
6answers
439 views
regular expression to extract data from html page
I want to extract all anchor tags from html pages. I am using this in Linux.
lynx --source http://www.imdb.com | egrep "<a[^>]*>"
but that is not working as expected, since result contains ...
3
votes
2answers
66 views
Is there a way to compare regular expression backreferences?
I have the following sample expression that I'm passing to egrep over a word list:
^([a-z])lu([a-z])\2er$
I'd like to further stipulate that the content of \1 and \2 must be different, e.g. this ...
3
votes
2answers
170 views
grep: “^.” doesn't match correctly
Can someone explain why this code doesn't work as expected?
I would expect it only to match the first character, and it does with literal characters, but the wildcard (.) and characters classes behave ...
2
votes
3answers
318 views
How to invert a grep expression
The following grep expression successfully lists all the .exe and .html files in the current directory and sub directories.
ls -R |grep -E .*[\.exe]$\|.*[\.html]$
How do I invert this result to ...
2
votes
2answers
62 views
Alternating chars and nested parenthesesin (e)grep
I'm looking for a regex that finds all words in a list that do not have characters next to each other that are the same. (this is an exercise)
So abcdef is printed, but aabcdef is not.
I tried both
...
1
vote
2answers
49 views
Why [a-z]{3} and [[:lower:]]{3} are different in egrep?
Please try
egrep "^[a-z]{3}$" /usr/share/dict/words
egrep "^[[:lower:]]{3}$" /usr/share/dict/words
The first one returns both uppercase and lowercase words.
The second one returns lowercase words ...
1
vote
5answers
138 views
how to match “ABC-123” but not “XABC-123” in a regular expression
I have this egrep search:
egrep -is "(ABC-[0-9]+)"
which matches ABC-123 anywhere in a string.
I'd like it to ignore XABC-456 or YABC-789.
In other words, those examples should output "ok":
...
1
vote
4answers
203 views
Regular Expression to determine if phone number is 'local', 'national', 'mobile', 'premium', etc
I'm knocking up a simple PHP form to show telephone call usage on our asterisk system. All call information is being recorded in a database.
I'm familiar with regular expressions and PHP (to a ...
1
vote
4answers
490 views
Validating IPv4 addresses with regexp
I've been trying to get an efficient regex for IPv4 validation, but without much luck. It seemed at one point I had had it with (25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?(\.|$)){4}, but it produces some ...
1
vote
3answers
855 views
Parts of a match in regular expression with egrep
I was wondering if, with egrep ((GNU grep) 2.5.1), I can select a part of the matched text, something like:
grep '^([a-zA-Z.-]+)[0-9]+' ./file.txt
So I get only the part which matched, between the ...
1
vote
4answers
161 views
Regular Expressions Match Specific Location In File
The file i am working with (oraInst.loc) looks like this:
inventory_loc=/u01/app/ORAENV/oracle/oraInventory
inst_group=dba
I need to use a regular expression to grab the value between app/ and ...
1
vote
3answers
1k views
Find Non-UTF8 Filenames on Linux File System
O/S = Fedora Code 9.
I have a number of files hiding in my LANG=en_US:UTF-8 filesystem that have been uploaded with unrecognisable characters in their filename.
I need to search the filesystem and ...
0
votes
2answers
55 views
egrep regular expression works within PHP, but doesn't work at unix shell - escaping issues?
I think my problem has something to do with escaping differences between using a regex within PHP versus using it at Bash commandline.
Here is my regex that is working in PHP:
$emailregex = ...
0
votes
3answers
51 views
Regex replace match with match + addons
I would like to replace case-insensitive let's say mix:
text StmiXx and some more mIxx text
after regex replacement:
text St<font color="red">miX</font>x and some more <font ...
0
votes
3answers
86 views
syntax error with a regex in unix
I tried find a regular expression that matches any number between 1 and 999.
When is uses hooks I get a syntax error
(bash: syntax error near unexpected token `(')
and when I don't use the hooks ...
0
votes
1answer
82 views
How to tell egrep which characters not to accept
I want to accept string that begins with s than the next character (whatever it is) must be conatined in script two more times (but not less, not more) and before this char cannot be a backslash. So:
...
0
votes
4answers
189 views
Suppress the match itself in grep
Suppose I'have lots of files in the form of
First Line Name
Second Line Surname Adress
Third Line etc
etc
Now I'm using grep to match the first line. But I'm doing this actually to find the second ...
0
votes
3answers
330 views
Regex question: Match sequence only n times on a random place
I have a regex question, take for example:
...AAABZBZBCCCDDD...
...BZBZBDDDBZBZBCCC...
I am looking for a regular expression that matches BZBZB just n times. in a line. So, if I wanted to match ...
0
votes
1answer
434 views
Using find or grep to locate filenames with accented characters from a different encoding system (Windows to Linux)
I tried to tag late onto a question similar to mine (Find Non-UTF8 Filenames on Linux File System) to elicit further replies, with no luck so far, so here goes again...
I have the same problem as the ...
0
votes
3answers
242 views
egrep regex not working on regex that works in other program
I have this working regex (tested on regex coach):
\n[\s]*[0-9]*[\s]*[0-9]*(\.)?[0-9]*(e\+)?[0-9]*
that is supposed to pick up the first 2 columns of this file
...
0
votes
5answers
459 views
grep - search for “<?\n” at start of a file
I have a hunch that I should probably be using ack or egrep instead, but what should I use to basically look for
<?
at the start of a file? I'm trying to find all files that contain the php ...
0
votes
2answers
172 views
Modifying Regular expression to also match .java and .mm files
I am trying to use the cscope-indexer script. But I want to know how to change the following to include *.mm and *.java files?
egrep -i '\.([chly](xx|pp)*|cc|hh)$' | \
sed -e '/\/CVS\//d' -e ...