class CharSequenceContainsRegexSearcher : ISearcher<CharSequenceContainsNoOpSearchBehaviour>
Represents an ISearcher which evaluates the matches of a given regular expression on the input of the search.
CharSequenceContainsRegexSearcher()
Represents an ISearcher which evaluates the matches of a given regular expression on the input of the search. |
fun search(searchIn: CharSequence, searchFor: Any): Int
Searches in the given searchIn for the given searchFor, using its toString implementation, and returns the number of occurrences. fun search(searchIn: CharSequence, pattern: Pattern): Int |