Skip to content

Commit

Permalink
Enhancing Repo Experience with PipeScript (loading irregular, formatt…
Browse files Browse the repository at this point in the history
…ing regex name) (Fixes #119)
  • Loading branch information
StartAutomating authored and StartAutomating committed Sep 6, 2022
1 parent 2364154 commit 995b702
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions RegEx/JSON/README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
This directory contains regular expressions, generators, and RegEx source files for JSON.
This directory contains regular expressions, generators, and RegEx source files for JSON.

### Regular Expressions

|Name|Description|
|-|-|
|[```?<JSON_List>```](List.regex.txt)|A JSON List|
|[```?<JSON_ListSeparator>```](ListSeparator.regex.txt)|Matches a JSON list separator|
|[```?<JSON_Number>```](Number.regex.txt)|Matches a JSON Number|
|[```?<JSON_PropertyName>```](PropertyName.regex.txt)|A property within a JSON string|
|[```?<JSON_String>```](String.regex.txt)|Matches a JSON string|
|[```?<JSON_Value>```](Value.regex.txt)|Matches a JSON Value.|
|Name |Description |IsGenerator|
|------------------------------------------------|--------------------------------------------------------------------------------------------------|-----------|
|[?<JSON_List>](List.regex.txt) |A JSON List |False |
|[?<JSON_ListItem>](ListItem.regex.ps1) |Matches a JSON list item. If no -ListIndex is provided, will match all items in the list <br/>|True |
|[?<JSON_ListSeparator>](ListSeparator.regex.txt)|Matches a JSON list separator |False |
|[?<JSON_Number>](Number.regex.txt) |Matches a JSON Number |False |
|[?<JSON_Property>](Property.regex.ps1) |Matches a JSON property. -PropertyName can be customized.<br/> |True |
|[?<JSON_PropertyName>](PropertyName.regex.txt) |A property within a JSON string |False |
|[?<JSON_String>](String.regex.txt) |Matches a JSON string |False |
|[?<JSON_Value>](Value.regex.txt) |False |

### Regular Expression Generators

|Name|Description|Parameters|
|-|--|-|
|[```?<JSON_ListItem>```](ListItem.regex.ps1)|Matches a JSON list item. If no -ListIndex is provided, will match all items in the list <BR/>|```-ListIndex <int>```|
|[```?<JSON_Property>```](Property.regex.ps1)|Matches a JSON property. -PropertyName can be customized.<BR/>|```-PropertyName <string>```|

0 comments on commit 995b702

Please sign in to comment.