mirror of
https://github.com/MontFerret/ferret.git
synced 2025-02-11 13:52:49 +02:00
* 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
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
package strings
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
|
)
|
|
|
|
// SPLIT splits the given string value into a list of strings, using the separator.
|
|
// @param {String} str - The string to split.
|
|
// @param {String} separator - The separator.
|
|
// @param {Int} limit - Limit the number of split values in the result. If no limit is given, the number of splits returned is not bounded.
|
|
// @return {String[]} - Array of strings.
|
|
func Split(_ context.Context, args ...core.Value) (core.Value, error) {
|
|
err := core.ValidateArgs(args, 2, 3)
|
|
|
|
if err != nil {
|
|
return values.None, err
|
|
}
|
|
|
|
text := args[0].String()
|
|
separator := args[1].String()
|
|
limit := -1
|
|
|
|
if len(args) > 2 {
|
|
if args[2].Type() == types.Int {
|
|
limit = int(args[2].(values.Int))
|
|
}
|
|
}
|
|
|
|
var strs []string
|
|
|
|
if limit < 0 {
|
|
strs = strings.Split(text, separator)
|
|
} else {
|
|
strs = strings.SplitN(text, separator, limit)
|
|
}
|
|
|
|
arr := values.NewArray(len(strs))
|
|
|
|
for _, str := range strs {
|
|
arr.Push(values.NewString(str))
|
|
}
|
|
|
|
return arr, nil
|
|
}
|