fn:contains 判断字符串是否包含另外一个字符串
fn:containsignorecase 判断字符串是否包含另外一个字符串(大小写无关)
fn:endswith 判断字符串是否以另外字符串结束
fn:escapexml 把一些字符转成xml表示,例如 <字符应该转为< ${fn:escapexml(param:info)}
fn:indexof 子字符串在母字符串中出现的位置 ${fn:indexof(name, "-")}
fn:join 将数组中的数据联合成一个新字符串,并使用指定字符格开 ${fn:join(array, ";")}
fn:length 获取字符串的长度,或者数组的大小 ${fn:length(shoppingcart.products)}
fn:replace 替换字符串中指定的字符 ${fn:replace(text, "-", "?")}
fn:split 把字符串按照指定字符切分 ${fn:split(customernames, ";")}
fn:startswith 判断字符串是否以某个子串开始
fn:substring 获取子串 ${fn:substring(zip, 6, -1)}
fn:substringafter 获取从某个字符所在位置开始的子串 ${fn:substringafter(zip, "-")}
fn:substringbefore 获取从开始到某个字符所在位置的子串 ${fn:substringbefore(zip, "-")}
fn:tolowercase 转为小写 ${fn.tolowercase(product.name)}
fn:touppercase 转为大写字符 ${fn.uppercase(product.name)}
fn:trim 去除字符串前后的空格 ${fn.trim(name)}
函数
描述
fn:contains(string, substring)
如果参数string中包含参数substring,返回true
fn:containsignorecase(string, substring)
如果参数string中包含参数substring(忽略大小写),返回true
fn:endswith(string, suffix)
如果参数 string 以参数suffix结尾,返回true
fn:escapexml(string)
将有特殊意义的xml (和html)转换为对应的xml character entity code,并返回
fn:indexof(string, substring)
返回参数substring在参数string中第一次出现的位置
fn:join(array, separator)
将一个给定的数组array用给定的间隔符separator串在一起,组成一个新的字符串并返回。
fn:length(item)
返回参数item中包含元素的数量。参数item类型是数组、collection或者string。如果是string类型,返回值是string中的字符数。
fn:replace(string, before, after)
返回一个string对象。用参数after字符串替换参数string中所有出现参数before字符串的地方,并返回替换后的结果
fn:split(string, separator)
返回一个数组,以参数separator 为分割符分割参数string,分割后的每一部分就是数组的一个元素
fn:startswith(string, prefix)
如果参数string以参数prefix开头,返回true
fn:substring(string, begin, end)
返回参数string部分字符串, 从参数begin开始到参数end位置,包括end位置的字符
fn:substringafter(string, substring)
返回参数substring在参数string中后面的那一部分字符串??
fn:substringbefore(string, substring)
返回参数substring在参数string中前面的那一部分字符串
fn:tolowercase(string)
将参数string所有的字符变为小写,并将其返回
fn:touppercase(string)
将参数string所有的字符变为大写,并将其返回
fn:trim(string)
在jsp中 使用el表达式时,不可以使用java提供的功能,比如indexof()等。
报错
the function valueof must be used with a prefix when a default namespace is not specified
posted on 2014-08-05 15:24
alpha 阅读(15397)
评论(0) 所属分类:
java j2ee jsp