|
Tomcat example source code file (basic-comparisons.jsp)
The Tomcat basic-comparisons.jsp source code<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html> <head> <title>JSP 2.0 Expression Language - Basic Comparisons </head> <body> <h1>JSP 2.0 Expression Language - Basic Comparisons <hr> This example illustrates basic Expression Language comparisons. The following comparison operators are supported: <ul> <li>Less-than (< or lt) <li>Greater-than (> or gt) <li>Less-than-or-equal (<= or le) <li>Greater-than-or-equal (>= or ge) <li>Equal (== or eq) <li>Not Equal (!= or ne) </ul> <blockquote> <u>Numeric <code> <table border="1"> <thead> <td>EL Expression |
<td>Result
</thead>
<tr>
<td>\${1 < 2}
<td>${1 < 2}
</tr>
<tr>
<td>\${1 lt 2}
<td>${1 lt 2}
</tr>
<tr>
<td>\${1 > (4/2)}
<td>${1 > (4/2)}
</tr>
<tr>
<td>\${1 > (4/2)}
<td>${1 > (4/2)}
</tr>
<tr>
<td>\${4.0 >= 3}
<td>${4.0 >= 3}
</tr>
<tr>
<td>\${4.0 ge 3}
<td>${4.0 ge 3}
</tr>
<tr>
<td>\${4 <= 3}
<td>${4 <= 3}
</tr>
<tr>
<td>\${4 le 3}
<td>${4 le 3}
</tr>
<tr>
<td>\${100.0 == 100}
<td>${100.0 == 100}
</tr>
<tr>
<td>\${100.0 eq 100}
<td>${100.0 eq 100}
</tr>
<tr>
<td>\${(10*10) != 100}
<td>${(10*10) != 100}
</tr>
<tr>
<td>\${(10*10) ne 100}
<td>${(10*10) ne 100}
</tr>
</table>
</code>
<br>
<u>Alphabetic
<code>
<table border="1">
<thead>
<td>EL Expression
<td>Result
</thead>
<tr>
<td>\${'a' < 'b'}
<td>${'a' < 'b'}
</tr>
<tr>
<td>\${'hip' > 'hit'}
<td>${'hip' > 'hit'}
</tr>
<tr>
<td>\${'4' > 3}
<td>${'4' > 3}
</tr>
</table>
</code>
</blockquote>
</body>
</html>
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.