Home > php教程 > PHP开发 > body text

jsp implementation method to determine whether list contains string

高洛峰
Release: 2016-12-29 16:42:03
Original
1419 people have browsed it

In jstl, there is a method like fn:contains(str,str) to determine whether a string contains another string, but there is no method to determine whether a list contains a string, so I wrote a method myself

contains.tag:

<%@ tag import="java.util.List" %>
<%@ tag import="org.apache.commons.lang3.StringUtils" %>
<%@ tag import="java.util.Arrays" %>
<%@tag pageEncoding="UTF-8"%>
<%@ attribute name="srcStr" type="java.lang.String" required="true"%>
<%@ attribute name="separatorChars" type="java.lang.String" required="false"%>
<%@ attribute name="str" type="java.lang.String" required="true"%>
<%
  String sepChars=separatorChars==null?"-":separatorChars;
  String[] splitChars = StringUtils.split(srcStr, sepChars);
  List<String> list = Arrays.asList(splitChars);
  if(list.contains(str))
  {%>
    <jsp:doBody/>
<%}
%>
Copy after login

Then add a sentence on the page of the method you need to use:

<%@ taglib prefix="gms" tagdir="/WEB-INF/tags" %>
Copy after login

This way you can use it directly

<gms:contains srcStr="${srcStr }" str="${str }"> str </gms:contains>
Copy after login

This way you can Judged.

The above is the entire implementation method of JSP to judge whether the list contains string brought by the editor. I hope everyone will support the PHP Chinese website~

More jsp to judge whether the list contains related Please pay attention to the PHP Chinese website for articles!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!