Text Replacement Helpers Text replacement helpers process are used to extract or convert text. For example, helpers can be used to extract a...
between_strings The between_strings text helper is used to extract text from a haystack located between the start_needle and end_needle Returns a...
before_string Returns a string which is the subset of haystack before needle and not including needle itself. If needle is not...
after_string Returns a string which is the subset of haystack after needle and not including needle itself. If needle is not...
lines Returns a string which is the subset of all lines of haystack specified in line_numbers. Any lines specified in line_numbers...
before_line Returns a string which is the subset of all lines of haystack before line number line_number and not including line...
after_line Returns a string which is the subset of all lines of haystack after line number line_number and not including line...
regex Returns a string which is the subset of haystack that matches the regular expression pattern. If no matches to pattern...
before_regex Returns a string which is the subset of haystack before the match to the regular expression pattern and not including...
after_regex Returns a string which is the subset of haystack after the match to the regular expression pattern and not including...
between_regexs Returns a string which is the subset of haystack between the match to the regular expression start_pattern and the match...
date Returns a representing a date and/or time. If date_string is not provided, will default to the current date and time....
implode Given an array of strings (pieces), will return a concatenation of each string separated by glue. Given an array of...