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
comparing 2 strings satish@123 Shell Programming and Scripting 2 05-16-2008 07:59 AM
comparing strings agarwal Shell Programming and Scripting 3 04-16-2008 05:29 AM
Comparing Two Strings Anji Shell Programming and Scripting 8 01-09-2008 06:32 AM
Comparing strings yakyaj UNIX for Advanced & Expert Users 2 03-23-2007 01:22 AM
comparing two strings ragha81 Shell Programming and Scripting 24 09-21-2006 11:52 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 01-09-2008
Anji Anji is offline
Registered User
  
 

Join Date: Jan 2008
Posts: 21
Urgent:Comparing two Strings using If Loop

Hi All,

Please help me out in this... I am new to scripting

How to compare two strings by using the same string in single loop,
I am using ksh

for ex:see the code snippet below
I am writing in java,
Can u guys tell me that in scripting

if ("string1"=="string2" || "string1"=="string3")
{
//statements----
}
else
if("string2"="string3")
{
//statements
}

Thanks in advance.
Anji
  #2 (permalink)  
Old 01-09-2008
sysgate's Avatar
sysgate sysgate is offline Forum Advisor  
Unix based
  
 

Join Date: Nov 2006
Location: Bulgaria
Posts: 1,322
in java (copied from the net, handy ):
Quote:
String s = "something", t = "maybe something else";
if (s == t) // Legal, but usually WRONG.
if (s.equals(t)) // RIGHT
if (s > t) // ILLEGAL
if (s.compareTo(t) > 0) // CORRECT>
in ksh :
Quote:
if [[ $foo = "bar" ]];then
# commands....
fi
  #3 (permalink)  
Old 01-09-2008
Anji Anji is offline
Registered User
  
 

Join Date: Jan 2008
Posts: 21
Thanks buddy

I already solved that problem by own

Anyway Thanks alot for ur reply
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 03:53 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