A range that lazily produces a string output escaped to be used inside of a regular expression.
import std.algorithm.comparison; import std.regex; string s = `This is {unfriendly} to *regex*`; assert(s.escaper.equal(`This is \{unfriendly\} to \*regex\*`));
See Implementation
A range that lazily produces a string output escaped to be used inside of a regular expression.