View source code
Display the source code in std/regex.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

Function std.regex.replace

Old API for replacement, operation depends on flags of pattern re. With "g" flag it performs the equivalent of replaceAll otherwise it works the same as replaceFirst.

R replace(alias scheme, R, C, RegEx) (
  R input,
  RegEx re,
  const(C)[] format
)
if (isSomeString!R && isRegexFor!(RegEx, R));

R replace(alias fun, R, RegEx) (
  R input,
  RegEx re
)
if (isSomeString!R && isRegexFor!(RegEx, R));

The use of this function is discouraged, please use replaceAll or replaceFirst explicitly.

Authors

Dmitry Olshansky,

API and utility constructs are modeled after the original std.regex by Walter Bright and Andrei Alexandrescu.

License

Boost License 1.0.