You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.description="Alternating caps, also known as studly caps, sticky caps, or spongecase is a form of text notation in which the capitalization of letters varies by some pattern, or arbitrarily. An example of this would be spelling 'alternative caps' as 'aLtErNaTiNg CaPs'.";
Copy file name to clipboardExpand all lines: src/core/operations/ExtractIPAddresses.mjs
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ class ExtractIPAddresses extends Operation {
21
21
22
22
this.name="Extract IP addresses";
23
23
this.module="Regex";
24
-
this.description="Extracts all IPv4 and IPv6 addresses.<br><br>Warning: Given a string <code>710.65.0.456</code>, this will match <code>10.65.0.45</code> so always check the original input!";
24
+
this.description="Extracts all IPv4 and IPv6 addresses.<br><br>Warning: Given a string <code>1.2.3.4.5.6.7.8</code>, this will match <code>1.2.3.4 and 5.6.7.8</code> so always check the original input!";
25
25
this.inputType="string";
26
26
this.outputType="string";
27
27
this.args=[
@@ -65,7 +65,21 @@ class ExtractIPAddresses extends Operation {
0 commit comments