今天寫jsp頁面,要求對字段中間部分隱藏,只顯示前幾位和后幾位。搜了一下發(fā)現(xiàn)網(wǎng)上大都是隱藏前面指定字段,或者是利用正則表達式隱藏手機號或是身份證。這樣的話必須預先知道字段長度,而我不想知道長度只顯示前3位和后4位。
沒辦法,誰讓我需要隱藏的字段長度未定呢。
解決方案:1、如果知道字段長度的話可以用正則表達式或是jsp標簽庫里的fn函數(shù)
正則表達式
phone.replaceAll("(\\d{3})\\d{4}(\\d{4})","$1****$2");
152****4799
idCard.replaceAll("(\\d{4})\\d{10}(\\w{4})","$1*****$2");
4304*****7733
fn函數(shù)
復制代碼 代碼如下:
${fn:substring(item.mobile,0,3)}****${fn:substring(item.mobile,7,11)}br>152****4799
復制代碼 代碼如下:
${fn:substring(item.idCard,0,4)}****${fn:substring(item.idCard,14,18)}br>4304****7733
2、不知道字段長度,只顯示前部分和后部分,只能用fn了
復制代碼 代碼如下:
${fn:substring(item.account,0,3)}****${fn:substring(item.account,fn:length(item.account)-4,(fn:length(item.account)))}
這樣就只顯示前3位和后4位了
再貼上只顯示前幾位,后幾位用.......省略號代替的例子,用于太長的標題
c:if test="${fn:length(itrm.fundName) > 10 }">${fn:substring(item.fundName, 0, 10) }... /c:if> //最大顯示10位,多于超出的用省略號表示
c:if test="${fn:length(item.fundName) = 10 }">${item.fundName}/c:if>
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。