Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
ReplaceNoCase with Integer Replacement throws Exception
Description
The following code:
replaceNoCase( "1,2,3", 2, 4 )
throws the following exception:
ortus.boxlang.runtime.types.exceptions.BoxCastException: Value [java.lang.Integer] cannot be cast to a Function
at ortus.boxlang.runtime.dynamic.casters.FunctionCaster.cast(FunctionCaster.java:140)
at ortus.boxlang.runtime.dynamic.casters.FunctionCaster.cast(FunctionCaster.java:101)
at ortus.boxlang.runtime.dynamic.casters.FunctionCaster.cast(FunctionCaster.java:89)
at ortus.boxlang.runtime.bifs.global.string.ReplaceNoCase._invoke(ReplaceNoCase.java:93)
at ortus.boxlang.runtime.bifs.BIF.invoke(BIF.java:113)
at ortus.boxlang.runtime.bifs.BIFDescriptor.invoke(BIFDescriptor.java:210)
at ortus.boxlang.runtime.context.FunctionBoxContext.invokeFunction(FunctionBoxContext.java:594)
Fix the type checking in this BIF to use the string caster
Activity
Show:
Fixed
Pinned fields
Click on the next to a field label to start pinning.
The following code:
replaceNoCase( "1,2,3", 2, 4 )
throws the following exception:
ortus.boxlang.runtime.types.exceptions.BoxCastException: Value [java.lang.Integer] cannot be cast to a Function at ortus.boxlang.runtime.dynamic.casters.FunctionCaster.cast(FunctionCaster.java:140) at ortus.boxlang.runtime.dynamic.casters.FunctionCaster.cast(FunctionCaster.java:101) at ortus.boxlang.runtime.dynamic.casters.FunctionCaster.cast(FunctionCaster.java:89) at ortus.boxlang.runtime.bifs.global.string.ReplaceNoCase._invoke(ReplaceNoCase.java:93) at ortus.boxlang.runtime.bifs.BIF.invoke(BIF.java:113) at ortus.boxlang.runtime.bifs.BIFDescriptor.invoke(BIFDescriptor.java:210) at ortus.boxlang.runtime.context.FunctionBoxContext.invokeFunction(FunctionBoxContext.java:594)
Fix the type checking in this BIF to use the string caster