The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
regex test in bash subin_bala Shell Programming and Scripting 1 04-16-2008 03:27 AM
test command looks strange... jjinno Shell Programming and Scripting 2 11-02-2007 07:31 PM
Help regarding Error message: A test command parameter is not valid skyineyes Shell Programming and Scripting 5 06-29-2007 05:38 AM
a strange message when executing the sort command marwan UNIX for Dummies Questions & Answers 3 04-27-2007 07:32 AM
ed strange error message frenki Shell Programming and Scripting 6 10-29-2004 06:00 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 05-31-2006
fgilain fgilain is offline
Registered User
  
 

Join Date: May 2006
Posts: 2
Strange error message with regex test...

Hi all,

I have a script where i need to check the format of a string.
finally, i'm waiting a "process name" and 2 numbers separated by a ","

string like : "this_is_a_string.txt,1,10 should be ok"
string ok : "apache.exe,1,10"
string ok : "mysqld,50,0"

string not ok : "ap ache,1,10"
string not ok : "ap,ache,1,10"
string not ok : " apache,1,10"

PS : "" characters are only here to be able to show a string beginning with a space...

Here is what i tryed :

if [[ $(expr "$PROCESS_STRING" : '^[a-z0-9\-\.\_]*,[0-9]*,[0-9]*$') -ne 0 ]];
then
echo " : String OK"
else
echo " : String KO"
fi

But i always get an error :

expr: WARNING: BRE not portable: « ^[a-z0-9\-\.\_]*,[0-9]*,[0-9]*$ »: use of « ^ » character as first character of a base regular expression isn't portable; canceled.
: Format OK

The problem seems to be the "^" character at the beginning of my regex, but if i remove it, a string like " apache,1,10" would be ok but it shouldn't in my case...

thanks for your help

Florent
  #2 (permalink)  
Old 05-31-2006
tayyabq8's Avatar
tayyabq8 tayyabq8 is offline Forum Advisor  
Moderator
  
 

Join Date: Nov 2004
Location: Bahrain
Posts: 578
Try the same code without "^" in ksh
Code:
if [[ $(expr "$PROCESS_STRING" : '[a-z0-9\-\.\_]*,[0-9]*,[0-9]*$') -ne 0 ]];
it shouldn't match any string with a whitespace like "ap ache,1,9" or " apache,1,9"

Regards,
Tayyab
  #3 (permalink)  
Old 05-31-2006
fgilain fgilain is offline
Registered User
  
 

Join Date: May 2006
Posts: 2
sorry, it matches if space is the first character of the string...
  #4 (permalink)  
Old 05-31-2006
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,119
Quote:
Originally Posted by fgilain
Hi all,

I have a script where i need to check the format of a string.
finally, i'm waiting a "process name" and 2 numbers separated by a ","

string like : "this_is_a_string.txt,1,10 should be ok"
string ok : "apache.exe,1,10"
string ok : "mysqld,50,0"

string not ok : "ap ache,1,10"
string not ok : "ap,ache,1,10"
string not ok : " apache,1,10"

PS : "" characters are only here to be able to show a string beginning with a space...

Here is what i tryed :

if [[ $(expr "$PROCESS_STRING" : '^[a-z0-9\-\.\_]*,[0-9]*,[0-9]*$') -ne 0 ]];
then
echo " : String OK"
else
echo " : String KO"
fi

But i always get an error :

expr: WARNING: BRE not portable: « ^[a-z0-9\-\.\_]*,[0-9]*,[0-9]*$ »: use of « ^ » character as first character of a base regular expression isn't portable; canceled.
: Format OK

The problem seems to be the "^" character at the beginning of my regex, but if i remove it, a string like " apache,1,10" would be ok but it shouldn't in my case...

thanks for your help

Florent
What OS are you on?
It works fine with Solaris' /usr/bin/expr and /usr/xpg4/bin/expr
  #5 (permalink)  
Old 05-31-2006
Ygor's Avatar
Ygor Ygor is offline Forum Staff  
Moderator
  
 

Join Date: Oct 2003
Location: -31.96,115.84
Posts: 1,407
Using expr STRING : REGEXP performs an anchored pattern match of REGEXP in STRING. So you shouldn't need to anchor your expression with '^' or '$'.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 12:00 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0