SubstringBetweenFunctionDTO

FunctionDTO that represents the following internal functions:

Sub Type Property: "_type" : "SubstringBetween"

Fields

Type
Name
Description
Optional
Default Value
firstParam
The first parameter value of the function (lower bound).
false
 
secondParam
The second parameter value of the function (upper bound).
false
 
Integer  
startPos
The start position to compare the substring from.
false
 
Integer  
length
The length of the substring to compare.
false
 

Example

{
	"_type" : "SubstringBetween",
	"firstParam" : {
		"_type" : "String",
		"value" : "AAA",
		"writable" : true,
		"readable" : true,
		"status" : null
	},
	"secondParam" : {
		"_type" : "String",
		"value" : "CCC",
		"writable" : true,
		"readable" : true,
		"status" : null
	},
	"startPos" : 0,
	"length" : 3
}