Skip to content

Commit

Permalink
change to resolve valid comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cortex-av committed Nov 2, 2023
1 parent cfb9aa1 commit edc7f8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description: "Finds all occurrences of a text in a given text."

Finds all occurrences of [Text To Find][TextToFind Property] in a given [Text][Text Property].

[Search Options][SearchOptions Property] can be specified to choose whether to use a ContainsText, PatternMatching or Regex search to find the [Text To Find][TextToFind Property].
[Search Options][SearchOptions Property] can be specified to choose whether to use a ContainsText, PatternMatching or Regex search to match the [Text To Find][TextToFind Property] input.

## Examples

Expand Down Expand Up @@ -384,7 +384,7 @@ It performs a [case-sensitive, culture-insensitive][Ordinal] comparison of text.

### Find all occurrences that start with and end with a Text To Find in Text (Null contains)

This example will find all occurrences of text that start with `"The"`, contains `null` and ends with `"jumps"` from `"The quick brown fox jumps over the lazy dog. The dog woke up and tried to bite the fox. The fox jumps to get away."`.
This example will find all occurrences of text that start with `"The"`, contains `null` and ends with `"jumps"` from `"The quick brown fox jumps over the lazy dog. The dog woke up and tried to bite the fox. The fox jumps to get away."`. To clarify, this [Text To Find][TextToFind Property] input is searching for matches of `"Thejumps"` exactly in [Text][Text Property].

It performs a [case-sensitive, culture-insensitive][Ordinal] comparison of text.

Expand Down Expand Up @@ -412,7 +412,7 @@ It performs a [case-sensitive, culture-insensitive][Ordinal] comparison of text.

### Text

The [Text][Text Property] to findall occurrences of [Text To Find][TextToFind Property] in.
The [Text][Text Property] to find all occurrences of [Text To Find][TextToFind Property] in.

| | |
|--------------------|---------------------------|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description: "Finds the specified occurrence of a text in a given text."

Finds the nth of [Text To Find][TextToFind Property] in a given [Text][Text Property].

[Search Options][SearchOptions Property] can be specified to choose whether to use a ContainsText, PatternMatching or Regex search to find the [Text To Find][TextToFind Property].
[Search Options][SearchOptions Property] can be specified to choose whether to use a ContainsText, PatternMatching or Regex search to match the [Text To Find][TextToFind Property] input.

## Examples

Expand Down Expand Up @@ -400,7 +400,7 @@ It performs a [case-sensitive, culture-insensitive][Ordinal] comparison of text.

### Find the nth occurrence that starts with and ends with a Text To Find in Text (Null contains)

This example will find the first occurrence of text that start with `"The"`, contains `null` and ends with `"jumps"` from `"The quick brown fox jumps over the lazy dog."`.
This example will find the first occurrence of text that start with `"The"`, contains `null` and ends with `"jumps"` from `"The quick brown fox jumps over the lazy dog."`. To clarify, this [Text To Find][TextToFind Property] input is searching for matches of `"Thejumps"` exactly in [Text][Text Property].

It performs a [case-sensitive, culture-insensitive][Ordinal] comparison of text.

Expand Down

0 comments on commit edc7f8b

Please sign in to comment.