This file is indexed.

/usr/share/freemat/help/text/regexprep.mdc is in freemat-help 4.0-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
REGEXPREP REGEXPREP Regular Expression Replacement Function

Usage

Replaces regular expressions in the provided string.  The syntax for its
use is 

  outstring = regexprep(instring,pattern,replacement,modes)

Here instring is the string to be operated on.  And pattern is a regular
expression of the type accepted by regexp.  For each match, the contents
of the matched string are replaced with the replacement text.  Tokens in the
regular expression can be used in the replacement text using $N where N
is the number of the token to use.  You can also specify the same mode 
flags that are used by regexp.