StringFilter

Description

Filters a string to its elements for which the callback function returns true.

Returns

A new string.

Category

Syntax

StringFilter(String string, UDFMethod callback)

History

ColdFusion (2021 release): Added this function.

Parameters

Parameter

Description

string

(Required) The input string

callback

(Required) Inline function executed for each element in the string. Returns true if the string element has to be included in the resultant string. 

Example

<cfscript> 
    myStr="diamonds" 
    callback=function(chr){ 
        return chr>"d" 
    } 
    writeOutput(StringFilter(myStr,callback)) // imons 
</cfscript>

Example 2

<cfscript> 
    myStr="123456789" 
    callback=function(chr){ 
        return chr>53 
    } 
    writeOutput(StringFilter(myStr,callback)) // 6789 
</cfscript>

 Adobe

Nhận trợ giúp nhanh chóng và dễ dàng hơn

Bạn là người dùng mới?

Adobe MAX 2024

Adobe MAX
Hội thảo sáng tạo

14–16/10 Bãi biển Miami và trực tuyến

Adobe MAX

Hội thảo sáng tạo

14–16/10 Bãi biển Miami và trực tuyến

Adobe MAX 2024

Adobe MAX
Hội thảo sáng tạo

14–16/10 Bãi biển Miami và trực tuyến

Adobe MAX

Hội thảo sáng tạo

14–16/10 Bãi biển Miami và trực tuyến