-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathtext_find.json
More file actions
93 lines (93 loc) · 2.51 KB
/
Copy pathtext_find.json
File metadata and controls
93 lines (93 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"id": "text_find",
"summary": "First position of a text in another text",
"description": "Checks where the text (also known as *string*) specified for `pattern` is positioned in the text specified for `data` for the first time. No-data values are passed through.",
"categories": [
"texts"
],
"experimental": true,
"parameters": [
{
"name": "data",
"description": "Text in which to find something in.",
"schema": {
"type": [
"string",
"null"
]
}
},
{
"name": "pattern",
"description": "Text to find in `data`. Regular expressions are not supported.",
"schema": {
"type": "string"
}
},
{
"name": "case_sensitive",
"description": "Case sensitive comparison can be disabled by setting this parameter to `false`.",
"schema": {
"type": "boolean"
},
"default": true,
"optional": true
}
],
"returns": {
"description": "A value >= 0 that indicates the position of the text, `null` if the text was not found.",
"schema": {
"type": [
"integer",
"null"
],
"minimum": 0
}
},
"examples": [
{
"arguments": {
"data": "Lorem ipsum dolor sit amet",
"pattern": "openEO"
},
"returns": null
},
{
"arguments": {
"data": "Lorem ipsum dolor sit amet",
"pattern": "ipsum dolor"
},
"returns": 6
},
{
"arguments": {
"data": "Lorem ipsum dolor sit amet",
"pattern": "Ipsum Dolor"
},
"returns": null
},
{
"arguments": {
"data": "Lorem ipsum dolor sit amet",
"pattern": "SIT",
"case_sensitive": false
},
"returns": 18
},
{
"arguments": {
"data": "ÄÖÜ",
"pattern": "ö",
"case_sensitive": false
},
"returns": 1
},
{
"arguments": {
"data": null,
"pattern": "null"
},
"returns": null
}
]
}