Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Siddhi Execution Regex
[![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)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

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.
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.

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>.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
examples = {
@Example(
syntax = "regex:find('\\d\\d(.*)WSO2', " +
"'21 products are produced by WSO2 currently') as aboutWSO2)",
"'21 products are produced by WSO2 currently')",
description = "This method attempts to find the subsequence of the input.sequence " +
"that matches the regex pattern, `\\d\\d(.*)WSO2`. It returns `true` " +
"as a subsequence exists."
Expand Down
2 changes: 1 addition & 1 deletion docs/api/5.0.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<span id="examples" class="md-typeset" style="display: block; font-weight: bold;">Examples</span>
<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>
```
regex:find('\d\d(.*)WSO2', '21 products are produced by WSO2 currently') as aboutWSO2)
regex:find('\d\d(.*)WSO2', '21 products are produced by WSO2 currently')
```
<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>

Expand Down
2 changes: 1 addition & 1 deletion docs/api/latest.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<span id="examples" class="md-typeset" style="display: block; font-weight: bold;">Examples</span>
<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>
```
regex:find('\d\d(.*)WSO2', '21 products are produced by WSO2 currently') as aboutWSO2)
regex:find('\d\d(.*)WSO2', '21 products are produced by WSO2 currently')
```
<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>

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Siddhi Execution Regex
[![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)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

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.
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.

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>.

Expand Down