The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
April 2001

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

How can I compare more than one value in a Substring

Posted by Frank on June 07, 2001 at 6:00 PM

I don't know if I understand your question correctly. But if you want to compare more than one value, just do something like:
if (!num.equals("")){
if (num.substring(0,2).equals("25")||num.substring(0,2).equals("35"||num.substring(0,2).equals("45")){
cata = "A";
order = num;
}
else {
cata = "B";
ctr = num;
}
}





Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us