DeepCopy (Regex function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Template:Regex:DeepCopy subtitle}}
{{Template:Regex:DeepCopy subtitle}}


This page is [[under construction]].
This method makes a copy of the <var>Regex</var> object.
 
This method is identical to [[Copy (Regex function)|Copy]]. There is no particular reason to explicitly use <var>DeepCopy</var> instead of <var>Copy</var> but <var>DeepCopy</var> is implicitly called when a <var>Regex</var> object is part of an object tree or forest that is being deep-copied. For more information about deep copyability, see [[Copying objects|"Copying objects"]].
==Syntax==
==Syntax==
{{Template:Regex:DeepCopy syntax}}
{{Template:Regex:DeepCopy syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%outRegex</th><td><var>Regex</var> object</td></tr>
<tr><th>%outRegex</th><td>A new <var>Regex</var> object</td></tr>
<tr><th>regex</th>
<tr><th>regex</th>
<td><var>Regex</var> object, which may be <var>Null</var></td></tr>
<td>Regex object, which may be <var>Null</var></td></tr>
</table>
==See also==
{{Template:Regex:DeepCopy footer}}
 
{{Template:Regex:IsUnicode subtitle}}
 
This method indicates whether or not the regular expression used to create the <var>Regex</var> object was specified in Unicode.
==Syntax==
{{Template:Regex:IsUnicode syntax}}
===Syntax terms===
<table class="syntaxTable">
<tr><th>%boolean</th><td><var>Boolean</var> value that indicates whether (<var>true</var>) or not (<var>false</var>) the regular expression used to constuct the <var>Regex</var> object was Unicode.</td></tr>
<tr><th>regex</th>
<td>The <var>Regex</var> object</td></tr>
</table>
</table>
==Usage notes==
==Examples==
==Examples==
The following example:
<p class="code">b
%regex    is object regex
%regex = new("(((Tomorrow|Today) is)|(Yesterday was)) Pie Day", options="i")
print %regex:isUnicode
%regex = new("((Tomorrow|Today) is)|(Yesterday was) &pi; Day":u, options="i")
print %regex:isUnicode
end
</p>
displays:
<p class="code">False
True
</p>
==See also==
==See also==
{{Template:Regex:DeepCopy footer}}
{{Template:Regex:IsUnicode footer}}
 
[[Category:Regular expression processing]]

Latest revision as of 02:16, 14 March 2022

Return a deep copy of a Regex object (Regex class)


This method makes a copy of the Regex object.

This method is identical to Copy. There is no particular reason to explicitly use DeepCopy instead of Copy but DeepCopy is implicitly called when a Regex object is part of an object tree or forest that is being deep-copied. For more information about deep copyability, see "Copying objects".

Syntax

%outRegex = regex:DeepCopy

Syntax terms

%outRegexA new Regex object
regex Regex object, which may be Null

See also

Is this a Unicode regular expression (Regex class)


This method indicates whether or not the regular expression used to create the Regex object was specified in Unicode.

Syntax

%boolean = regex:IsUnicode

Syntax terms

%booleanBoolean value that indicates whether (true) or not (false) the regular expression used to constuct the Regex object was Unicode.
regex The Regex object

Examples

The following example:

b %regex is object regex %regex = new("(((Tomorrow|Today) is)|(Yesterday was)) Pie Day", options="i") print %regex:isUnicode %regex = new("((Tomorrow|Today) is)|(Yesterday was) π Day":u, options="i") print %regex:isUnicode end

displays:

False True

See also