1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-02-11 13:52:49 +02:00
ferret/pkg/stdlib/strings/contains.go
Tim Voronov 24d8eedd4c
Feature/doc markup (#543)
* Added release notes

* #509 fixedOCOD typo

* Updated values

* Updated comments

* Changed stdlib docs format

* Changed format of array in docs

* Use 'any' instead of 'value' in docs

* New format for optional params

* Updated docs for testing package

* Added namespace information
2020-08-07 21:49:29 -04:00

56 lines
1.4 KiB
Go

package strings
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
"github.com/MontFerret/ferret/pkg/runtime/values/types"
)
// CONTAINS returns a value indicating whether a specified substring occurs within a string.
// @param {String} str - The source string.
// @param {String} search - The string to seek.
// @param {Boolean} [returnIndex=False] - Values which indicates whether to return the character position of the match is returned instead of a boolean.
// @return {Boolean | Int} - A value indicating whether a specified substring occurs within a string.
func Contains(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 2, 3)
if err != nil {
return values.False, err
}
var text values.String
var search values.String
returnIndex := values.False
arg1 := args[0]
arg2 := args[1]
if arg1.Type() == types.String {
text = arg1.(values.String)
} else {
text = values.NewString(arg1.String())
}
if arg2.Type() == types.String {
search = arg2.(values.String)
} else {
search = values.NewString(arg2.String())
}
if len(args) > 2 {
arg3 := args[2]
if arg3.Type() == types.Boolean {
returnIndex = arg3.(values.Boolean)
}
}
if returnIndex == values.True {
return text.IndexOf(search), nil
}
return text.Contains(search), nil
}