vote up 1 vote down star

To make a long story short, I have a line of text that I'm using grep to see if the letter 'd' exists here is an example of what is going on:

echo d file='hello world' | grep -c -w d
Returns 1, this is correct.

echo file='hello world' | grep -c -w d
Returns 0, this is correct.

echo d file='hello world d' | grep -c -w d
Returns 1, this is correct

echo file='hello world d' | grep -c -w d
Returns 1, this is INCORRECT.

The problem is that I need it to ignore the data inside the single quotes. The last example needs to return 0. I'm more of a C# regex guy and less of a Linux grep guru. Can anyone point me in the right direction. Is grep the right tool to use here or is there something else that might help?

flag

80% accept rate
Do quoted strings ever span lines? Are there any other quoting characters? Can there be strings with an embedded quotes? – Dale Hagglund Jul 22 at 15:43
It's always one line and only single quotes. – Douglas Anderson Jul 22 at 16:02

3 Answers

vote up 3 vote down check

I'd use sed to remove all text inside quotes, and then do a grep on the output of sed. Something like this:

echo "d 'hi there'" | sed -r "s|'[^']*'||g" | grep -c -w d
link|flag
vote up 1 vote down

Based on the info you provided, this should work:

grep -c -E "^[^']*?d.*?'.*?'"

%> cat blah.sh

echo d file=\'hello world\' | grep -c -E "^[^']*?d.*?'.*?'"
echo file=\'hello world\' | grep -c -E "^[^']*?d.*?'.*?'"
echo d file=\'hello world d\' | grep -c -E "^[^']*?d.*?'.*?'"
echo file=\'hello world d\' | grep -c -E "^[^']*?d.*?'.*?'"

%> ./blah.sh
1
0
1
0
link|flag
vote up 1 vote down

Pipe the output through a tool to get rid of anything you don't want, for example sed:

echo d file='hello world' | sed -e "s:'[^']*'::g" | grep -c -w d

This reads: replace (s) anything which matches the regular expression (delimited with :) with the empty string.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.