![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| 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 |
| string comparison operators, what are they?? | ballazrus | Shell Programming and Scripting | 12 | 04-07-2009 12:43 PM |
| string comparison | Jatsui | Shell Programming and Scripting | 5 | 02-04-2008 04:28 PM |
| string comparison | fedora | Shell Programming and Scripting | 2 | 01-03-2007 03:20 PM |
| Get Comparison operators from with RexExp | umen | Shell Programming and Scripting | 3 | 07-19-2006 11:38 AM |
| String Comparison | abey | High Level Programming | 1 | 10-19-2005 01:08 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
[sh] String comparison operators
I know in C shell, if I wanted to check if the inputted number was in a certain format, like a zip code, I can use the following code:
Code:
if ( $reply !~ [0-9][0-9][0-9][0-9][0-9] ) then Code:
if [ $reply! = [0-9][0-9][0-9][0-9][0-9] ] |
|
||||
|
Basic Bourne doesn't have regular expressions in the [ command, no. You can use case in this case (sic) though.
Code:
case $reply in [0-9][0-9][0-9][0-9][0-9]) rejoice;; esac |
![]() |
| Bookmarks |
| Tags |
| regex, regular expressions |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|