Skip to content

Commit 8827b5f

Browse files
StartAutomatingStartAutomating
authored andcommitted
Create FUNDING.yml
1 parent 5a5bb94 commit 8827b5f

1 file changed

Lines changed: 31 additions & 5 deletions

File tree

docs/Remove-RegEx.md

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
11
Remove-RegEx
22
------------
3+
4+
5+
6+
37
### Synopsis
48
Removes Regular Expressions
59

10+
11+
612
---
13+
14+
715
### Description
816

917
Removes Regular Expressions that have been created.
1018
This will remove the associated file, any module sharing the Regex's name, and any dynamic aliases.
1119

20+
21+
1222
---
23+
24+
1325
### Related Links
1426
* [Get-RegEx](Get-RegEx.md)
1527

@@ -19,14 +31,22 @@ This will remove the associated file, any module sharing the Regex's name, and a
1931

2032

2133

34+
35+
2236
---
37+
38+
2339
### Examples
2440
#### EXAMPLE 1
2541
```PowerShell
2642
Remove-RegEx -Name MyRegEx
2743
```
2844

45+
46+
2947
---
48+
49+
3050
### Parameters
3151
#### **Name**
3252

@@ -43,29 +63,35 @@ The name of one or more regular expressions
4363

4464

4565

46-
---
4766
#### **WhatIf**
4867
-WhatIf is an automatic variable that is created when a command has ```[CmdletBinding(SupportsShouldProcess)]```.
4968
-WhatIf is used to see what would happen, or return operations without executing them
5069
#### **Confirm**
5170
-Confirm is an automatic variable that is created when a command has ```[CmdletBinding(SupportsShouldProcess)]```.
5271
-Confirm is used to -Confirm each operation.
53-
72+
5473
If you pass ```-Confirm:$false``` you will not be prompted.
55-
56-
74+
75+
5776
If the command sets a ```[ConfirmImpact("Medium")]``` which is lower than ```$confirmImpactPreference```, you will not be prompted unless -Confirm is passed.
5877

78+
79+
5980
---
81+
82+
6083
### Outputs
6184
* [Nullable](https://learn.microsoft.com/en-us/dotnet/api/System.Nullable)
6285

6386

6487

6588

89+
90+
6691
---
92+
93+
6794
### Syntax
6895
```PowerShell
6996
Remove-RegEx [-Name] <String[]> [-WhatIf] [-Confirm] [<CommonParameters>]
7097
```
71-
---

0 commit comments

Comments
 (0)