Custom regex
Extract strings matching custom regex.
App usage
Parameters
Search
Description: Regex pattern (in javascript syntax)
type: String
Required: true
Example
# INPUT TEXT
The quick brown dog jumped over the
lazy fox. The quick brown dog jumped
over the lazy fox. The quick brown dog.
jumped over the lazy fox. The quick
brown dog jumped over the lazy fox.
# Search parameter
quick(.*)jump
# RESULT
[
"quick brown dog jump"
]
API usage
You can find all required parameters and multi-language examples on our RapidAPI page.