1.6 KiB
1.6 KiB
title | description | menu | weight | flux/v0/tags | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
regexp.compile() function | `regexp.compile()` parses a string into a regular expression and returns a regexp type that can be used to match against strings. |
|
101 |
|
regexp.compile()
parses a string into a regular expression and returns a regexp type
that can be used to match against strings.
Function type signature
(v: string) => regexp
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
Parameters
v
({{< req >}}) String value to parse into a regular expression.
Examples
Convert a string into a regular expression
import "regexp"
regexp.compile(v: "abcd")// Returns the regexp object /abcd/