Skip to content

Commit

Permalink
Adding ?<Degrees> (Fixes #185)
Browse files Browse the repository at this point in the history
  • Loading branch information
StartAutomating authored and StartAutomating committed Apr 13, 2023
1 parent fa834e5 commit 21fb3c3
Showing 1 changed file with 31 additions and 8 deletions.
39 changes: 31 additions & 8 deletions docs/Import-RegEx.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
Import-RegEx
------------




### Synopsis
Imports Regular Expressions



---


### Description

Imports saved Regular Expressions.



---


### Related Links
* [Use-RegEx](Use-RegEx.md)

Expand All @@ -18,7 +30,11 @@ Imports saved Regular Expressions.





---


### Examples
#### EXAMPLE 1
```PowerShell
Expand All @@ -35,7 +51,11 @@ Import-Regex -FromModule AnotherModule # Imports Regular Expressions stored in a
Import-RegEx -Name NextWord
```



---


### Parameters
#### **FilePath**

Expand All @@ -47,13 +67,12 @@ Files should be named $Name.regex.txt or $Name.regex.ps1



|Type |Required|Position|PipelineInput |
|------------|--------|--------|---------------------|
|`[String[]]`|false |1 |true (ByPropertyName)|
|Type |Required|Position|PipelineInput |Aliases |
|------------|--------|--------|---------------------|--------|
|`[String[]]`|false |1 |true (ByPropertyName)|Fullname|



---
#### **FromModule**

If provided, will get regular expressions from any number of already imported modules.
Expand All @@ -69,7 +88,6 @@ If provided, will get regular expressions from any number of already imported mo



---
#### **Pattern**

One or more direct patterns to import
Expand All @@ -85,7 +103,6 @@ One or more direct patterns to import



---
#### **Name**

The Name of the Regular Expression.
Expand All @@ -101,7 +118,6 @@ The Name of the Regular Expression.



---
#### **PassThru**

If set, will output the imported regular expressions.
Expand All @@ -117,7 +133,11 @@ If set, will output the imported regular expressions.





---


### Outputs
* [Nullable](https://learn.microsoft.com/en-us/dotnet/api/System.Nullable)

Expand All @@ -127,9 +147,12 @@ If set, will output the imported regular expressions.





---


### Syntax
```PowerShell
Import-RegEx [[-FilePath] <String[]>] [[-FromModule] <String[]>] [[-Pattern] <String[]>] [[-Name] <String[]>] [-PassThru] [<CommonParameters>]
```
---

0 comments on commit 21fb3c3

Please sign in to comment.