Class ReFind
java.lang.Object
ortus.boxlang.runtime.bifs.BIF
ortus.boxlang.runtime.bifs.global.string.ReFind
@BoxBIF @BoxBIF(alias="reFindNoCase")
@BoxMember(type=STRING,name="reFind",objectArgument="string") @BoxMember(type=STRING,name="reFindNoCase",objectArgument="string")
public class ReFind
extends BIF
-
Field Summary
Fields inherited from class ortus.boxlang.runtime.bifs.BIF
__functionName, __isMemberExecution, asyncService, cacheService, componentService, declaredArguments, functionService, interceptorService, moduleService, runtime
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription_invoke
(IBoxContext context, ArgumentsScope arguments) Uses a regular expression (RE) to search a string for a pattern, starting from a specified position.Methods inherited from class ortus.boxlang.runtime.bifs.BIF
announce, getDeclaredArguments, invoke
-
Constructor Details
-
ReFind
public ReFind()Constructor
-
-
Method Details
-
_invoke
Uses a regular expression (RE) to search a string for a pattern, starting from a specified position. The search is case-sensitive. It will return numeric if returnsubexpressions is false and a struct of arrays named "len", "match" and "pos" when returnsubexpressions is true.
-