This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfset t = "test;"> | |
<cfset e = reFindNoCase(";", t)> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select name="consignor"> | |
<option value="">enter</option> | |
<option value="123">test</option> | |
</select> | |
<cfdump var="#consignor#"><cfabort> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfset a = 0> | |
<cfdump var="##"><cfabort> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfset LOCAL.X = ""> | |
<cfoutput> | |
#LOCAL.X NEQ ""#! | |
<br> | |
#LOCAL.X IS NOT ""#! | |
</cfoutput> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
a="08:00" | |
writeOutput(isDate(a) & "<br>") | |
writeOutput(isDate(a) && parseDateTime(a).getTime() > 86400000) | |
</cfscript> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfoutput> | |
</cfoutput> | |
<cffunction name="sanitizeForFullText" access="private" returntype="string" output="false"> | |
<cfargument name="s" type="string" required="true" /> | |
<cfset var out = trim(arguments.s) /> | |
<!--- Normalize & strip diacritics (e.g., Việt -> Viet) ---> | |
<!--- Remove everything except letters, numbers, and whitespace ---> | |
<cfset out = reReplace( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfoutput> | |
</cfoutput> | |
<cffunction name="sanitizeForFullText" access="private" returntype="string" output="false"> | |
<cfargument name="s" type="string" required="true" /> | |
<cfset var out = trim(arguments.s) /> | |
<!--- Normalize & strip diacritics (e.g., Việt -> Viet) ---> | |
<!--- Remove everything except letters, numbers, and whitespace ---> | |
<cfset out = reReplace( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfoutput> | |
</cfoutput> | |
<cffunction name="sanitizeForFullText" access="private" returntype="string" output="false"> | |
<cfargument name="s" type="string" required="true" /> | |
<cfset var out = trim(arguments.s) /> | |
<!--- Normalize & strip diacritics (e.g., Việt -> Viet) ---> | |
<!--- Remove everything except letters, numbers, and whitespace ---> | |
<cfset out = reReplace( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfoutput> | |
</cfoutput> | |
<cffunction name="sanitizeForFullText" access="private" returntype="string" output="false"> | |
<cfargument name="s" type="string" required="true" /> | |
<cfset var out = trim(arguments.s) /> | |
<!--- Normalize & strip diacritics (e.g., Việt -> Viet) ---> | |
<!--- Remove everything except letters, numbers, and whitespace ---> | |
<cfset out = reReplace( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfoutput> | |
</cfoutput> | |
<cffunction name="sanitizeForFullText" access="private" returntype="string" output="false"> | |
<cfargument name="s" type="string" required="true" /> | |
<cfset var out = trim(arguments.s) /> | |
<!--- Normalize & strip diacritics (e.g., Việt -> Viet) ---> | |
<!--- Remove everything except letters, numbers, and whitespace ---> | |
<cfset out = reReplace( |
NewerOlder