Skip to content

Commit 76e75e1

Browse files
authored
Merge pull request #43 from suhothayan/master
Fix API documentation and site content
2 parents 69698ae + 3b75613 commit 76e75e1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Siddhi Execution Regex
88
[![GitHub Last Commit](https://img.shields.io/github/last-commit/siddhi-io/siddhi-execution-regex.svg)](https://github.com/siddhi-io/siddhi-execution-regex/commits/master)
99
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1010

11-
The **siddhi-execution-regex extension** is a <a target="_blank" href="https://siddhi.io/">Siddhi</a> extension that provides basic regex handling capabilities such as concat, length, replace all, etc.
11+
The **siddhi-execution-regex extension** is a <a target="_blank" href="https://siddhi.io/">Siddhi</a> extension that provides basic RegEx execution capabilities such as find, match, etc.
1212

1313
For information on <a target="_blank" href="https://siddhi.io/">Siddhi</a> and it's features refer <a target="_blank" href="https://siddhi.io/redirect/docs.html">Siddhi Documentation</a>.
1414

component/src/main/java/io/siddhi/extension/execution/regex/FindFunctionExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
examples = {
9595
@Example(
9696
syntax = "regex:find('\\d\\d(.*)WSO2', " +
97-
"'21 products are produced by WSO2 currently') as aboutWSO2)",
97+
"'21 products are produced by WSO2 currently')",
9898
description = "This method attempts to find the subsequence of the input.sequence " +
9999
"that matches the regex pattern, `\\d\\d(.*)WSO2`. It returns `true` " +
100100
"as a subsequence exists."

docs/api/5.0.3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<span id="examples" class="md-typeset" style="display: block; font-weight: bold;">Examples</span>
5353
<span id="example-1" class="md-typeset" style="display: block; color: rgba(0, 0, 0, 0.54); font-size: 12.8px; font-weight: bold;">EXAMPLE 1</span>
5454
```
55-
regex:find('\d\d(.*)WSO2', '21 products are produced by WSO2 currently') as aboutWSO2)
55+
regex:find('\d\d(.*)WSO2', '21 products are produced by WSO2 currently')
5656
```
5757
<p style="word-wrap: break-word">This method attempts to find the subsequence of the input.sequence that matches the regex pattern, <code>\d\d(.*)WSO2</code>. It returns <code>true</code> as a subsequence exists.</p>
5858

docs/api/latest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<span id="examples" class="md-typeset" style="display: block; font-weight: bold;">Examples</span>
5353
<span id="example-1" class="md-typeset" style="display: block; color: rgba(0, 0, 0, 0.54); font-size: 12.8px; font-weight: bold;">EXAMPLE 1</span>
5454
```
55-
regex:find('\d\d(.*)WSO2', '21 products are produced by WSO2 currently') as aboutWSO2)
55+
regex:find('\d\d(.*)WSO2', '21 products are produced by WSO2 currently')
5656
```
5757
<p style="word-wrap: break-word">This method attempts to find the subsequence of the input.sequence that matches the regex pattern, <code>\d\d(.*)WSO2</code>. It returns <code>true</code> as a subsequence exists.</p>
5858

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Siddhi Execution Regex
88
[![GitHub Last Commit](https://img.shields.io/github/last-commit/siddhi-io/siddhi-execution-regex.svg)](https://github.com/siddhi-io/siddhi-execution-regex/commits/master)
99
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
1010

11-
The **siddhi-execution-regex extension** is a <a target="_blank" href="https://siddhi.io/">Siddhi</a> extension that provides basic regex handling capabilities such as concat, length, replace all, etc.
11+
The **siddhi-execution-regex extension** is a <a target="_blank" href="https://siddhi.io/">Siddhi</a> extension that provides basic RegEx execution capabilities such as find, match, etc.
1212

1313
For information on <a target="_blank" href="https://siddhi.io/">Siddhi</a> and it's features refer <a target="_blank" href="https://siddhi.io/redirect/docs.html">Siddhi Documentation</a>.
1414

0 commit comments

Comments
 (0)