├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── request-regex.md └── workflows │ ├── IrregularTests.yml │ └── OnIssue.yml ├── Build ├── GitHub │ ├── Actions │ │ └── Irregular.ps1 │ ├── Jobs │ │ ├── BuildIrregular.psd1 │ │ ├── RunGitPub.psd1 │ │ └── UseIrregularAction.psd1 │ └── Steps │ │ └── UseIrregularAction.psd1 ├── Irregular.ADOPipeline.PSDevOps.ps1 ├── Irregular.GitHubAction.PSDevops.ps1 ├── Irregular.GitHubWorkflow.PSDevops.ps1 ├── Irregular.HelpOut.ps1 ├── Irregular.PSSVG.ps1 └── Irregular.ezformat.ps1 ├── CHANGELOG.md ├── Commands ├── Compress-RegEx.ps1 ├── Export-RegEx.ps1 ├── Get-RegEx.ps1 ├── Import-RegEx.ps1 ├── New-RegEx.ps1 ├── Remove-RegEx.ps1 ├── Set-RegEx.ps1 ├── Show-RegEx.ps1 └── Use-RegEx.ps1 ├── Dockerfile ├── Irregular.format.ps1xml ├── Irregular.ps.psm1 ├── Irregular.psd1 ├── Irregular.psm1 ├── Irregular.tests.ps1 ├── Irregular.types.ps1xml ├── LICENSE ├── README.md ├── README.ps1.md ├── RegEx ├── ArithmeticOperator.regex.txt ├── BalancedBrackets.regex.txt ├── BalancedCode.regex.ps1 ├── BalancedCurlyBracket.regex.txt ├── BalancedParenthesis.regex.txt ├── C │ ├── Define.regex.source.ps1 │ ├── Define.regex.txt │ ├── Enum.regex.source.ps1 │ ├── Enum.regex.txt │ ├── IfDef.regex.source.ps1 │ ├── IfDef.regex.txt │ ├── Include.regex.source.ps1 │ ├── Include.regex.txt │ ├── README.md │ ├── README.ps1.md │ ├── Struct.regex.source.ps1 │ └── Struct.regex.txt ├── CNC │ ├── GCode.regex.source.ps1 │ ├── GCode.regex.txt │ ├── README.md │ └── README.ps1.md ├── CSharp │ ├── Class.regex.source.ps1 │ ├── Class.regex.txt │ ├── Identifier.regex.source.ps1 │ ├── Identifier.regex.txt │ ├── Namespace.regex.source.ps1 │ ├── Namespace.regex.txt │ ├── README.md │ ├── README.ps1.md │ └── Using.regex.txt ├── CamelCaseSpace.regex.source.ps1 ├── CamelCaseSpace.regex.txt ├── Code │ ├── BuildVersion.regex.txt │ ├── Method.regex.source.ps1 │ ├── Method.regex.txt │ ├── Namespace.regex.txt │ ├── PackageVersion.regex.txt │ ├── README.md │ ├── README.ps1.md │ ├── Region.regex.ps1 │ └── SemanticVersion.regex.txt ├── Colon.regex.txt ├── Console │ ├── 24BitColor.regex.source.ps1 │ ├── 24BitColor.regex.txt │ ├── 4BitColor.regex.source.ps1 │ ├── 4BitColor.regex.txt │ ├── 8BitColor.regex.source.ps1 │ ├── 8BitColor.regex.txt │ ├── Blink.regex.source.ps1 │ ├── Blink.regex.txt │ ├── Bold.regex.source.ps1 │ ├── Bold.regex.txt │ ├── Code.regex.source.ps1 │ ├── Code.regex.txt │ ├── Color.regex.source.ps1 │ ├── Color.regex.txt │ ├── Console.tests.ps1 │ ├── Cursor.regex.source.ps1 │ ├── Cursor.regex.txt │ ├── DefaultColor.regex.source.ps1 │ ├── DefaultColor.regex.txt │ ├── Faint.regex.source.ps1 │ ├── Faint.regex.txt │ ├── Hide.regex.source.ps1 │ ├── Hide.regex.txt │ ├── Invert.regex.source.ps1 │ ├── Invert.regex.txt │ ├── Italic.regex.source.ps1 │ ├── Italic.regex.txt │ ├── Link.regex.source.ps1 │ ├── Link.regex.txt │ ├── Note.regex.source.ps1 │ ├── Note.regex.txt │ ├── README.md │ ├── README.ps1.md │ ├── Reset.regex.source.ps1 │ ├── Reset.regex.txt │ ├── Strikethrough.regex.source.ps1 │ ├── Strikethrough.regex.txt │ ├── Style.regex.source.ps1 │ ├── Style.regex.txt │ ├── Underline.regex.source.ps1 │ └── Underline.regex.txt ├── Decimals.regex.txt ├── Degrees.regex.source.ps1 ├── Digits.regex.txt ├── DoubleQuotedString.regex.ps1 ├── EmailAddress.regex.source.ps1 ├── EmailAddress.regex.txt ├── Equals.regex.txt ├── FFmpeg │ ├── Configuration.regex.source.ps1 │ ├── Configuration.regex.txt │ ├── Input.regex.source.ps1 │ ├── Input.regex.txt │ ├── Metadata.regex.source.ps1 │ ├── Metadata.regex.txt │ ├── Output.regex.source.ps1 │ ├── Output.regex.txt │ ├── Progress.regex.source.ps1 │ ├── Progress.regex.txt │ ├── README.md │ ├── README.ps1.md │ ├── Stream.regex.source.ps1 │ └── Stream.regex.txt ├── GenericBalancingExpression.regex.txt ├── GetMarkupTag.regex.ps1 ├── Git │ ├── Commit.regex.source.ps1 │ ├── Commit.regex.txt │ ├── Diff.regex.source.ps1 │ ├── Diff.regex.txt │ ├── DiffHeader.regex.source.ps1 │ ├── DiffHeader.regex.txt │ ├── DiffRange.regex.source.ps1 │ ├── DiffRange.regex.txt │ ├── Log.regex.source.ps1 │ ├── Log.regex.txt │ ├── README.md │ └── README.ps1.md ├── HTML │ ├── DataAttribute.regex.txt │ ├── DataSet.regex.txt │ ├── EndTag.regex.ps1 │ ├── IDAttribute.regex.txt │ ├── ItemScope.regex.txt │ ├── LinkedData.regex.source.ps1 │ ├── LinkedData.regex.txt │ ├── README.md │ ├── README.ps1.md │ ├── StartOrEndTag.regex.ps1 │ └── StartTag.regex.ps1 ├── HexColor.regex.input.txt ├── HexColor.regex.output.txt ├── HexColor.regex.source.ps1 ├── HexColor.regex.txt ├── HexDigits.regex.txt ├── JSON │ ├── List.regex.txt │ ├── ListItem.regex.ps1 │ ├── ListSeparator.regex.txt │ ├── Number.regex.txt │ ├── Property.regex.ps1 │ ├── PropertyName.regex.txt │ ├── README.md │ ├── README.ps1.md │ ├── String.regex.txt │ └── Value.regex.txt ├── Keyboard │ ├── Shortcut.regex.source.ps1 │ └── Shortcut.regex.txt ├── LeadingWhitespace.regex.txt ├── LineEndsWithColon.regex.txt ├── LineStartOrEnd.regex.txt ├── Liquid │ ├── Expression.regex.source.ps1 │ ├── Expression.regex.txt │ ├── README.md │ ├── README.ps1.md │ ├── Tag.regex.source.ps1 │ └── Tag.regex.txt ├── Markdown │ ├── CodeBlock.regex.ps1 │ ├── Heading.regex.ps1 │ ├── Link.regex.ps1 │ ├── List.regex.source.ps1 │ ├── List.regex.txt │ ├── Markdown.regex.tests.ps1 │ ├── README.md │ ├── README.ps1.md │ ├── ThematicBreak.regex.txt │ ├── YAMLHeader.regex.source.ps1 │ └── YAMLHeader.regex.txt ├── MultilineComment.regex.ps1 ├── Mustache │ ├── README.md │ ├── README.ps1.md │ └── Tag.regex.ps1 ├── Network │ ├── IPv4Address.regex.input.txt │ ├── IPv4Address.regex.output.txt │ ├── IPv4Address.regex.source.ps1 │ ├── IPv4Address.regex.txt │ ├── MACAddress.regex.source.ps1 │ ├── MACAddress.regex.txt │ ├── README.md │ └── README.ps1.md ├── NewLine.regex.txt ├── NextColon.regex.txt ├── NextWord.regex.txt ├── NumberAndExponent.regex.txt ├── NumberSign.regex.txt ├── OpenSCAD │ ├── Customization.regex.source.ps1 │ ├── Customization.regex.txt │ ├── Function.regex.source.ps1 │ ├── Function.regex.txt │ ├── Include.regex.source.ps1 │ ├── Include.regex.txt │ ├── Module.regex.source.ps1 │ ├── Module.regex.txt │ ├── Parameter.regex.source.ps1 │ ├── Parameter.regex.txt │ ├── README.md │ ├── README.ps1.md │ ├── Use.regex.source.ps1 │ └── Use.regex.txt ├── OptionalWhitespace.regex.txt ├── PHP │ └── Tag.regex.txt ├── PII │ ├── README.md │ ├── README.ps1.md │ ├── Redacted_SSN.regex.input.txt │ ├── Redacted_SSN.regex.source.ps1 │ ├── Redacted_SSN.regex.txt │ ├── Unredacted_SSN.regex.input.txt │ ├── Unredacted_SSN.regex.source.ps1 │ └── Unredacted_SSN.regex.txt ├── PowerShell │ ├── Attribute.regex.txt │ ├── AttributeValue.regex.txt │ ├── Function.regex.txt │ ├── Hashtable.regex.source.ps1 │ ├── Hashtable.regex.txt │ ├── HelpField.regex.ps1 │ ├── Invoke_Variable.regex.source.ps1 │ ├── Invoke_Variable.regex.txt │ ├── ParameterSet.regex.source.ps1 │ ├── ParameterSet.regex.txt │ ├── PowerShell.regex.tests.ps1 │ ├── README.md │ ├── README.ps1.md │ ├── Region.regex.ps1 │ ├── Requires.regex.source.ps1 │ ├── Requires.regex.txt │ ├── ScriptBlock.regex.txt │ ├── Variable.regex.input.txt │ ├── Variable.regex.output.txt │ ├── Variable.regex.source.ps1 │ └── Variable.regex.txt ├── Punctuation.regex.txt ├── README.md ├── REST │ └── Variable.regex.ps1 ├── RegularExpression │ ├── Group.regex.txt │ ├── GroupName.regex.source.ps1 │ ├── GroupName.regex.txt │ ├── Quantifier.regex.input.txt │ ├── Quantifier.regex.output.txt │ ├── Quantifier.regex.source.ps1 │ ├── Quantifier.regex.txt │ ├── README.md │ └── README.ps1.md ├── Security │ ├── AccessToken.regex.ps1 │ ├── JWT.regex.source.ps1 │ ├── JWT.regex.txt │ └── README.md ├── SingleQuotedString.regex.ps1 ├── StartsWithCapture.regex.txt ├── Subtitle │ ├── README.md │ ├── README.ps1.md │ ├── SRT.regex.source.ps1 │ ├── SRT.regex.txt │ ├── VTT.regex.source.ps1 │ └── VTT.regex.txt ├── Symbol.regex.source.ps1 ├── Symbol.regex.txt ├── Symbol │ ├── Currency.regex.source.ps1 │ ├── Currency.regex.txt │ ├── Math.regex.source.ps1 │ └── Math.regex.txt ├── Tag.regex.txt ├── TrueOrFalse.regex.txt ├── Unix │ ├── Conf_File.regex.source.ps1 │ ├── Conf_File.regex.txt │ ├── Conf_Line.regex.source.ps1 │ ├── Conf_Line.regex.txt │ ├── Conf_Section.regex.source.ps1 │ ├── Conf_Section.regex.txt │ ├── Cron_Interval.regex.source.ps1 │ ├── Cron_Interval.regex.txt │ ├── Duration.regex.source.ps1 │ ├── Duration.regex.txt │ ├── FileSystemType.regex.source.ps1 │ ├── FileSystemType.regex.txt │ ├── Mount.regex.input.txt │ ├── Mount.regex.source.ps1 │ ├── Mount.regex.txt │ ├── README.md │ ├── README.ps1.md │ ├── User.regex.input.txt │ ├── User.regex.source.ps1 │ └── User.regex.txt └── YAML │ ├── Key.regex.ps1 │ └── Value.regex.ps1 ├── RegExQuickReference.md ├── SavedPatterns.md ├── Types ├── Irregular.Match.Extract │ ├── .get_EndIndex.ps1 │ ├── .get_Input.ps1 │ └── .get_StartIndex.ps1 ├── Irregular.Regex.Output.format.ps1 ├── Irregular.Regex.format.ps1 ├── Irregular.Regular.Expression.format.ps1 ├── Irregular.Regular.Expression │ ├── get_GroupNames.ps1 │ ├── get_IsValid.ps1 │ └── get_Pattern.ps1 ├── Match │ ├── Peek.ps1 │ ├── System.Text.RegularExpressions.Match.format.ps1 │ ├── TypeName.txt │ ├── get_After.ps1 │ ├── get_Before.ps1 │ ├── get_Column.ps1 │ ├── get_EndIndex.ps1 │ ├── get_Input.ps1 │ ├── get_LastGroup.ps1 │ ├── get_Line.ps1 │ └── get_StartIndex.ps1 └── System.Text.RegularExpressions.RegEx.format.ps1 ├── UpdateSavedPatterns.md.irregular.ps1 ├── action.yml ├── assets ├── Irregular.svg ├── Irregular_600_Square.png ├── Irregular_85x85.png ├── Irregular_Wide.png ├── README.md ├── RegexSyntaxHighlighting.gif └── RegexSyntaxHighlighting2.gif ├── azure-pipelines.yml ├── docs ├── 2021-10-24.md ├── 2021-10.md ├── 2021-11-07.md ├── 2021-11-18.md ├── 2021-11-22.md ├── 2021-11-29.md ├── 2021-11.md ├── 2021-12-28.md ├── 2021-12.md ├── 2021.md ├── 2022-01-09.md ├── 2022-01.md ├── 2022-08-09.md ├── 2022-08.md ├── 2022-09-06.md ├── 2022-09-12.md ├── 2022-09-18.md ├── 2022-09-22.md ├── 2022-09-29.md ├── 2022-09.md ├── 2022-10-01.md ├── 2022-10-16.md ├── 2022-10-29.md ├── 2022-10.md ├── 2022-12-15.md ├── 2022-12.md ├── 2022.md ├── 2023-07-20.md ├── 2023-07.md ├── 2023.md ├── 2024-04-16.md ├── 2024-04.md ├── 2024.md ├── CHANGELOG.md ├── CNAME ├── Compress-Regex.md ├── Export-RegEx.md ├── Get-RegEx.md ├── Import-RegEx.md ├── New-RegEx.md ├── README.md ├── RegExQuickReference.md ├── Regular_Expression_Quick_Reference.md ├── Remove-RegEx.md ├── SavedPatterns.md ├── Set-RegEx.md ├── Show-RegEx.md ├── Understanding_Regular_Expressions.md ├── Use-RegEx.md ├── Using_Regular_Expressions_In_PowerShell.walkthru.md ├── _config.yml ├── _posts │ ├── 2021-10-24-Irregular-v0.6.1.md │ ├── 2021-10-24-Irregular-v0.6.md │ ├── 2021-11-07-Irregular-v0.6.2.md │ ├── 2021-11-18-Irregular-v0.6.3.md │ ├── 2021-11-22-Irregular-v0.6.4.md │ ├── 2021-11-29-Irregular-v0.6.5.md │ ├── 2021-12-28-Irregular-0.6.6.md │ ├── 2022-01-09-Irregular-0.6.7.md │ ├── 2022-08-09-Irregular-0.6.8.md │ ├── 2022-09-06-Irregular-0.6.9.md │ ├── 2022-09-12-Irregular-0.7.0.md │ ├── 2022-09-18-Irregular-0.7.1.md │ ├── 2022-09-22-Irregular-0.7.2.md │ ├── 2022-09-29-Irregular-0.7.3.md │ ├── 2022-10-01-Irregular-0.7.4.md │ ├── 2022-10-16-Irregular-0.7.5.md │ ├── 2022-10-29-Irregular-0.7.6.md │ ├── 2022-12-15-Irregular-0.7.7.md │ ├── 2023-07-20-Irregular-0.7.8.md │ └── 2024-04-16-Irregular-0.7.9.md ├── assets │ ├── Irregular.svg │ ├── Irregular_600_Square.png │ ├── Irregular_85x85.png │ ├── Irregular_Wide.png │ ├── RegexSyntaxHighlighting.gif │ └── RegexSyntaxHighlighting2.gif └── rss.xml └── en-us ├── Regular_Expression_Quick_Reference.help.txt ├── Understanding_Regular_Expressions.help.txt ├── Using_Regular_Expressions_In_PowerShell.walkthru.help.txt └── about_Irregular.help.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request-regex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/.github/ISSUE_TEMPLATE/request-regex.md -------------------------------------------------------------------------------- /.github/workflows/IrregularTests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/.github/workflows/IrregularTests.yml -------------------------------------------------------------------------------- /.github/workflows/OnIssue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/.github/workflows/OnIssue.yml -------------------------------------------------------------------------------- /Build/GitHub/Actions/Irregular.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/GitHub/Actions/Irregular.ps1 -------------------------------------------------------------------------------- /Build/GitHub/Jobs/BuildIrregular.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/GitHub/Jobs/BuildIrregular.psd1 -------------------------------------------------------------------------------- /Build/GitHub/Jobs/RunGitPub.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/GitHub/Jobs/RunGitPub.psd1 -------------------------------------------------------------------------------- /Build/GitHub/Jobs/UseIrregularAction.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/GitHub/Jobs/UseIrregularAction.psd1 -------------------------------------------------------------------------------- /Build/GitHub/Steps/UseIrregularAction.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/GitHub/Steps/UseIrregularAction.psd1 -------------------------------------------------------------------------------- /Build/Irregular.ADOPipeline.PSDevOps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/Irregular.ADOPipeline.PSDevOps.ps1 -------------------------------------------------------------------------------- /Build/Irregular.GitHubAction.PSDevops.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/Irregular.GitHubAction.PSDevops.ps1 -------------------------------------------------------------------------------- /Build/Irregular.GitHubWorkflow.PSDevops.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/Irregular.GitHubWorkflow.PSDevops.ps1 -------------------------------------------------------------------------------- /Build/Irregular.HelpOut.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/Irregular.HelpOut.ps1 -------------------------------------------------------------------------------- /Build/Irregular.PSSVG.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/Irregular.PSSVG.ps1 -------------------------------------------------------------------------------- /Build/Irregular.ezformat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Build/Irregular.ezformat.ps1 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Commands/Compress-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Commands/Compress-RegEx.ps1 -------------------------------------------------------------------------------- /Commands/Export-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Commands/Export-RegEx.ps1 -------------------------------------------------------------------------------- /Commands/Get-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Commands/Get-RegEx.ps1 -------------------------------------------------------------------------------- /Commands/Import-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Commands/Import-RegEx.ps1 -------------------------------------------------------------------------------- /Commands/New-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Commands/New-RegEx.ps1 -------------------------------------------------------------------------------- /Commands/Remove-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Commands/Remove-RegEx.ps1 -------------------------------------------------------------------------------- /Commands/Set-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Commands/Set-RegEx.ps1 -------------------------------------------------------------------------------- /Commands/Show-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Commands/Show-RegEx.ps1 -------------------------------------------------------------------------------- /Commands/Use-RegEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Commands/Use-RegEx.ps1 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Dockerfile -------------------------------------------------------------------------------- /Irregular.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Irregular.format.ps1xml -------------------------------------------------------------------------------- /Irregular.ps.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Irregular.ps.psm1 -------------------------------------------------------------------------------- /Irregular.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Irregular.psd1 -------------------------------------------------------------------------------- /Irregular.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Irregular.psm1 -------------------------------------------------------------------------------- /Irregular.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Irregular.tests.ps1 -------------------------------------------------------------------------------- /Irregular.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Irregular.types.ps1xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/README.md -------------------------------------------------------------------------------- /README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/README.ps1.md -------------------------------------------------------------------------------- /RegEx/ArithmeticOperator.regex.txt: -------------------------------------------------------------------------------- 1 | # Simple Arithmetic Operators 2 | [+-/÷*×] 3 | -------------------------------------------------------------------------------- /RegEx/BalancedBrackets.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/BalancedBrackets.regex.txt -------------------------------------------------------------------------------- /RegEx/BalancedCode.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/BalancedCode.regex.ps1 -------------------------------------------------------------------------------- /RegEx/BalancedCurlyBracket.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/BalancedCurlyBracket.regex.txt -------------------------------------------------------------------------------- /RegEx/BalancedParenthesis.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/BalancedParenthesis.regex.txt -------------------------------------------------------------------------------- /RegEx/C/Define.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/Define.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/C/Define.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/Define.regex.txt -------------------------------------------------------------------------------- /RegEx/C/Enum.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/Enum.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/C/Enum.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/Enum.regex.txt -------------------------------------------------------------------------------- /RegEx/C/IfDef.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/IfDef.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/C/IfDef.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/IfDef.regex.txt -------------------------------------------------------------------------------- /RegEx/C/Include.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/Include.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/C/Include.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/Include.regex.txt -------------------------------------------------------------------------------- /RegEx/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/README.md -------------------------------------------------------------------------------- /RegEx/C/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/README.ps1.md -------------------------------------------------------------------------------- /RegEx/C/Struct.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/Struct.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/C/Struct.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/C/Struct.regex.txt -------------------------------------------------------------------------------- /RegEx/CNC/GCode.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CNC/GCode.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/CNC/GCode.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CNC/GCode.regex.txt -------------------------------------------------------------------------------- /RegEx/CNC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CNC/README.md -------------------------------------------------------------------------------- /RegEx/CNC/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CNC/README.ps1.md -------------------------------------------------------------------------------- /RegEx/CSharp/Class.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CSharp/Class.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/CSharp/Class.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CSharp/Class.regex.txt -------------------------------------------------------------------------------- /RegEx/CSharp/Identifier.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CSharp/Identifier.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/CSharp/Identifier.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CSharp/Identifier.regex.txt -------------------------------------------------------------------------------- /RegEx/CSharp/Namespace.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CSharp/Namespace.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/CSharp/Namespace.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CSharp/Namespace.regex.txt -------------------------------------------------------------------------------- /RegEx/CSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CSharp/README.md -------------------------------------------------------------------------------- /RegEx/CSharp/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CSharp/README.ps1.md -------------------------------------------------------------------------------- /RegEx/CSharp/Using.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CSharp/Using.regex.txt -------------------------------------------------------------------------------- /RegEx/CamelCaseSpace.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/CamelCaseSpace.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/CamelCaseSpace.regex.txt: -------------------------------------------------------------------------------- 1 | # Matches where a CamelCaseSpace would be 2 | (?-i)(?<=[a-z])(?=[A-Z]) 3 | -------------------------------------------------------------------------------- /RegEx/Code/BuildVersion.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Code/BuildVersion.regex.txt -------------------------------------------------------------------------------- /RegEx/Code/Method.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Code/Method.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Code/Method.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Code/Method.regex.txt -------------------------------------------------------------------------------- /RegEx/Code/Namespace.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Code/Namespace.regex.txt -------------------------------------------------------------------------------- /RegEx/Code/PackageVersion.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Code/PackageVersion.regex.txt -------------------------------------------------------------------------------- /RegEx/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Code/README.md -------------------------------------------------------------------------------- /RegEx/Code/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Code/README.ps1.md -------------------------------------------------------------------------------- /RegEx/Code/Region.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Code/Region.regex.ps1 -------------------------------------------------------------------------------- /RegEx/Code/SemanticVersion.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Code/SemanticVersion.regex.txt -------------------------------------------------------------------------------- /RegEx/Colon.regex.txt: -------------------------------------------------------------------------------- 1 | # Matches a literal colon 2 | \: -------------------------------------------------------------------------------- /RegEx/Console/24BitColor.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/24BitColor.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/24BitColor.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/24BitColor.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/4BitColor.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/4BitColor.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/4BitColor.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/4BitColor.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/8BitColor.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/8BitColor.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/8BitColor.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/8BitColor.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Blink.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Blink.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Blink.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Blink.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Bold.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Bold.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Bold.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Bold.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Code.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Code.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Code.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Code.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Color.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Color.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Color.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Color.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Console.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Console.tests.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Cursor.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Cursor.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Cursor.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Cursor.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/DefaultColor.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/DefaultColor.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/DefaultColor.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/DefaultColor.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Faint.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Faint.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Faint.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Faint.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Hide.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Hide.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Hide.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Hide.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Invert.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Invert.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Invert.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Invert.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Italic.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Italic.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Italic.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Italic.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Link.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Link.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Link.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Link.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Note.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Note.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Note.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Note.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/README.md -------------------------------------------------------------------------------- /RegEx/Console/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/README.ps1.md -------------------------------------------------------------------------------- /RegEx/Console/Reset.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Reset.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Reset.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Reset.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Strikethrough.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Strikethrough.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Strikethrough.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Strikethrough.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Style.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Style.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Style.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Style.regex.txt -------------------------------------------------------------------------------- /RegEx/Console/Underline.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Underline.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Console/Underline.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Console/Underline.regex.txt -------------------------------------------------------------------------------- /RegEx/Decimals.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Decimals.regex.txt -------------------------------------------------------------------------------- /RegEx/Degrees.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Degrees.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Digits.regex.txt: -------------------------------------------------------------------------------- 1 | # Repeated Digits 2 | \d+ 3 | -------------------------------------------------------------------------------- /RegEx/DoubleQuotedString.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/DoubleQuotedString.regex.ps1 -------------------------------------------------------------------------------- /RegEx/EmailAddress.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/EmailAddress.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/EmailAddress.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/EmailAddress.regex.txt -------------------------------------------------------------------------------- /RegEx/Equals.regex.txt: -------------------------------------------------------------------------------- 1 | # A literal equal sign = 2 | = -------------------------------------------------------------------------------- /RegEx/FFmpeg/Configuration.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Configuration.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/FFmpeg/Configuration.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Configuration.regex.txt -------------------------------------------------------------------------------- /RegEx/FFmpeg/Input.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Input.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/FFmpeg/Input.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Input.regex.txt -------------------------------------------------------------------------------- /RegEx/FFmpeg/Metadata.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Metadata.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/FFmpeg/Metadata.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Metadata.regex.txt -------------------------------------------------------------------------------- /RegEx/FFmpeg/Output.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Output.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/FFmpeg/Output.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Output.regex.txt -------------------------------------------------------------------------------- /RegEx/FFmpeg/Progress.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Progress.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/FFmpeg/Progress.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Progress.regex.txt -------------------------------------------------------------------------------- /RegEx/FFmpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/README.md -------------------------------------------------------------------------------- /RegEx/FFmpeg/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/README.ps1.md -------------------------------------------------------------------------------- /RegEx/FFmpeg/Stream.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Stream.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/FFmpeg/Stream.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/FFmpeg/Stream.regex.txt -------------------------------------------------------------------------------- /RegEx/GenericBalancingExpression.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/GenericBalancingExpression.regex.txt -------------------------------------------------------------------------------- /RegEx/GetMarkupTag.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/GetMarkupTag.regex.ps1 -------------------------------------------------------------------------------- /RegEx/Git/Commit.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/Commit.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Git/Commit.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/Commit.regex.txt -------------------------------------------------------------------------------- /RegEx/Git/Diff.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/Diff.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Git/Diff.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/Diff.regex.txt -------------------------------------------------------------------------------- /RegEx/Git/DiffHeader.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/DiffHeader.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Git/DiffHeader.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/DiffHeader.regex.txt -------------------------------------------------------------------------------- /RegEx/Git/DiffRange.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/DiffRange.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Git/DiffRange.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/DiffRange.regex.txt -------------------------------------------------------------------------------- /RegEx/Git/Log.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/Log.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Git/Log.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/Log.regex.txt -------------------------------------------------------------------------------- /RegEx/Git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/README.md -------------------------------------------------------------------------------- /RegEx/Git/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Git/README.ps1.md -------------------------------------------------------------------------------- /RegEx/HTML/DataAttribute.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/DataAttribute.regex.txt -------------------------------------------------------------------------------- /RegEx/HTML/DataSet.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/DataSet.regex.txt -------------------------------------------------------------------------------- /RegEx/HTML/EndTag.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/EndTag.regex.ps1 -------------------------------------------------------------------------------- /RegEx/HTML/IDAttribute.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/IDAttribute.regex.txt -------------------------------------------------------------------------------- /RegEx/HTML/ItemScope.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/ItemScope.regex.txt -------------------------------------------------------------------------------- /RegEx/HTML/LinkedData.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/LinkedData.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/HTML/LinkedData.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/LinkedData.regex.txt -------------------------------------------------------------------------------- /RegEx/HTML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/README.md -------------------------------------------------------------------------------- /RegEx/HTML/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/README.ps1.md -------------------------------------------------------------------------------- /RegEx/HTML/StartOrEndTag.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/StartOrEndTag.regex.ps1 -------------------------------------------------------------------------------- /RegEx/HTML/StartTag.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HTML/StartTag.regex.ps1 -------------------------------------------------------------------------------- /RegEx/HexColor.regex.input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HexColor.regex.input.txt -------------------------------------------------------------------------------- /RegEx/HexColor.regex.output.txt: -------------------------------------------------------------------------------- 1 | #ff00ff 2 | #fff 3 | 4 | -------------------------------------------------------------------------------- /RegEx/HexColor.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HexColor.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/HexColor.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/HexColor.regex.txt -------------------------------------------------------------------------------- /RegEx/HexDigits.regex.txt: -------------------------------------------------------------------------------- 1 | # Matches one or more hexadecimal digits 2 | [0-9abcdef]+ -------------------------------------------------------------------------------- /RegEx/JSON/List.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/JSON/List.regex.txt -------------------------------------------------------------------------------- /RegEx/JSON/ListItem.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/JSON/ListItem.regex.ps1 -------------------------------------------------------------------------------- /RegEx/JSON/ListSeparator.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/JSON/ListSeparator.regex.txt -------------------------------------------------------------------------------- /RegEx/JSON/Number.regex.txt: -------------------------------------------------------------------------------- 1 | # Matches a JSON Number 2 | ? -------------------------------------------------------------------------------- /RegEx/JSON/Property.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/JSON/Property.regex.ps1 -------------------------------------------------------------------------------- /RegEx/JSON/PropertyName.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/JSON/PropertyName.regex.txt -------------------------------------------------------------------------------- /RegEx/JSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/JSON/README.md -------------------------------------------------------------------------------- /RegEx/JSON/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/JSON/README.ps1.md -------------------------------------------------------------------------------- /RegEx/JSON/String.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/JSON/String.regex.txt -------------------------------------------------------------------------------- /RegEx/JSON/Value.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/JSON/Value.regex.txt -------------------------------------------------------------------------------- /RegEx/Keyboard/Shortcut.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Keyboard/Shortcut.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Keyboard/Shortcut.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Keyboard/Shortcut.regex.txt -------------------------------------------------------------------------------- /RegEx/LeadingWhitespace.regex.txt: -------------------------------------------------------------------------------- 1 | # Matches zero or more whitespaces after the beginning of a line. 2 | ^\s{0,} -------------------------------------------------------------------------------- /RegEx/LineEndsWithColon.regex.txt: -------------------------------------------------------------------------------- 1 | # This returns lines that end with a colon 2 | :$ 3 | -------------------------------------------------------------------------------- /RegEx/LineStartOrEnd.regex.txt: -------------------------------------------------------------------------------- 1 | # This will match either a line start or end. 2 | ^|$ -------------------------------------------------------------------------------- /RegEx/Liquid/Expression.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Liquid/Expression.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Liquid/Expression.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Liquid/Expression.regex.txt -------------------------------------------------------------------------------- /RegEx/Liquid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Liquid/README.md -------------------------------------------------------------------------------- /RegEx/Liquid/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Liquid/README.ps1.md -------------------------------------------------------------------------------- /RegEx/Liquid/Tag.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Liquid/Tag.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Liquid/Tag.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Liquid/Tag.regex.txt -------------------------------------------------------------------------------- /RegEx/Markdown/CodeBlock.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/CodeBlock.regex.ps1 -------------------------------------------------------------------------------- /RegEx/Markdown/Heading.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/Heading.regex.ps1 -------------------------------------------------------------------------------- /RegEx/Markdown/Link.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/Link.regex.ps1 -------------------------------------------------------------------------------- /RegEx/Markdown/List.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/List.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Markdown/List.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/List.regex.txt -------------------------------------------------------------------------------- /RegEx/Markdown/Markdown.regex.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/Markdown.regex.tests.ps1 -------------------------------------------------------------------------------- /RegEx/Markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/README.md -------------------------------------------------------------------------------- /RegEx/Markdown/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/README.ps1.md -------------------------------------------------------------------------------- /RegEx/Markdown/ThematicBreak.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/ThematicBreak.regex.txt -------------------------------------------------------------------------------- /RegEx/Markdown/YAMLHeader.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/YAMLHeader.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Markdown/YAMLHeader.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Markdown/YAMLHeader.regex.txt -------------------------------------------------------------------------------- /RegEx/MultilineComment.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/MultilineComment.regex.ps1 -------------------------------------------------------------------------------- /RegEx/Mustache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Mustache/README.md -------------------------------------------------------------------------------- /RegEx/Mustache/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Mustache/README.ps1.md -------------------------------------------------------------------------------- /RegEx/Mustache/Tag.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Mustache/Tag.regex.ps1 -------------------------------------------------------------------------------- /RegEx/Network/IPv4Address.regex.input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Network/IPv4Address.regex.input.txt -------------------------------------------------------------------------------- /RegEx/Network/IPv4Address.regex.output.txt: -------------------------------------------------------------------------------- 1 | 127.0.0.1 -------------------------------------------------------------------------------- /RegEx/Network/IPv4Address.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Network/IPv4Address.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Network/IPv4Address.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Network/IPv4Address.regex.txt -------------------------------------------------------------------------------- /RegEx/Network/MACAddress.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Network/MACAddress.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Network/MACAddress.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Network/MACAddress.regex.txt -------------------------------------------------------------------------------- /RegEx/Network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Network/README.md -------------------------------------------------------------------------------- /RegEx/Network/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Network/README.ps1.md -------------------------------------------------------------------------------- /RegEx/NewLine.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/NewLine.regex.txt -------------------------------------------------------------------------------- /RegEx/NextColon.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/NextColon.regex.txt -------------------------------------------------------------------------------- /RegEx/NextWord.regex.txt: -------------------------------------------------------------------------------- 1 | # Finds all repeated text that is not whitespace or punctuation. 2 | [\S-[\p{P}]]+ -------------------------------------------------------------------------------- /RegEx/NumberAndExponent.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/NumberAndExponent.regex.txt -------------------------------------------------------------------------------- /RegEx/NumberSign.regex.txt: -------------------------------------------------------------------------------- 1 | # A number sign \# 2 | \# -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Customization.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Customization.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Customization.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Customization.regex.txt -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Function.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Function.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Function.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Function.regex.txt -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Include.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Include.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Include.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Include.regex.txt -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Module.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Module.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Module.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Module.regex.txt -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Parameter.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Parameter.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Parameter.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Parameter.regex.txt -------------------------------------------------------------------------------- /RegEx/OpenSCAD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/README.md -------------------------------------------------------------------------------- /RegEx/OpenSCAD/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/README.ps1.md -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Use.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Use.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/OpenSCAD/Use.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/OpenSCAD/Use.regex.txt -------------------------------------------------------------------------------- /RegEx/OptionalWhitespace.regex.txt: -------------------------------------------------------------------------------- 1 | # This matches zero or more whitespace characters 2 | \s{0,} -------------------------------------------------------------------------------- /RegEx/PHP/Tag.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PHP/Tag.regex.txt -------------------------------------------------------------------------------- /RegEx/PII/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PII/README.md -------------------------------------------------------------------------------- /RegEx/PII/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PII/README.ps1.md -------------------------------------------------------------------------------- /RegEx/PII/Redacted_SSN.regex.input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PII/Redacted_SSN.regex.input.txt -------------------------------------------------------------------------------- /RegEx/PII/Redacted_SSN.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PII/Redacted_SSN.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/PII/Redacted_SSN.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PII/Redacted_SSN.regex.txt -------------------------------------------------------------------------------- /RegEx/PII/Unredacted_SSN.regex.input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PII/Unredacted_SSN.regex.input.txt -------------------------------------------------------------------------------- /RegEx/PII/Unredacted_SSN.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PII/Unredacted_SSN.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/PII/Unredacted_SSN.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PII/Unredacted_SSN.regex.txt -------------------------------------------------------------------------------- /RegEx/PowerShell/Attribute.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Attribute.regex.txt -------------------------------------------------------------------------------- /RegEx/PowerShell/AttributeValue.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/AttributeValue.regex.txt -------------------------------------------------------------------------------- /RegEx/PowerShell/Function.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Function.regex.txt -------------------------------------------------------------------------------- /RegEx/PowerShell/Hashtable.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Hashtable.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/PowerShell/Hashtable.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Hashtable.regex.txt -------------------------------------------------------------------------------- /RegEx/PowerShell/HelpField.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/HelpField.regex.ps1 -------------------------------------------------------------------------------- /RegEx/PowerShell/Invoke_Variable.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Invoke_Variable.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/PowerShell/Invoke_Variable.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Invoke_Variable.regex.txt -------------------------------------------------------------------------------- /RegEx/PowerShell/ParameterSet.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/ParameterSet.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/PowerShell/ParameterSet.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/ParameterSet.regex.txt -------------------------------------------------------------------------------- /RegEx/PowerShell/PowerShell.regex.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/PowerShell.regex.tests.ps1 -------------------------------------------------------------------------------- /RegEx/PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/README.md -------------------------------------------------------------------------------- /RegEx/PowerShell/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/README.ps1.md -------------------------------------------------------------------------------- /RegEx/PowerShell/Region.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Region.regex.ps1 -------------------------------------------------------------------------------- /RegEx/PowerShell/Requires.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Requires.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/PowerShell/Requires.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Requires.regex.txt -------------------------------------------------------------------------------- /RegEx/PowerShell/ScriptBlock.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/ScriptBlock.regex.txt -------------------------------------------------------------------------------- /RegEx/PowerShell/Variable.regex.input.txt: -------------------------------------------------------------------------------- 1 | $foo; ${bar}; Get-Process @baz; 2 | -------------------------------------------------------------------------------- /RegEx/PowerShell/Variable.regex.output.txt: -------------------------------------------------------------------------------- 1 | $foo 2 | ${bar} 3 | @baz 4 | -------------------------------------------------------------------------------- /RegEx/PowerShell/Variable.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Variable.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/PowerShell/Variable.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/PowerShell/Variable.regex.txt -------------------------------------------------------------------------------- /RegEx/Punctuation.regex.txt: -------------------------------------------------------------------------------- 1 | # Matches any single or repeated punctuation. 2 | \p{P}+ -------------------------------------------------------------------------------- /RegEx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/README.md -------------------------------------------------------------------------------- /RegEx/REST/Variable.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/REST/Variable.regex.ps1 -------------------------------------------------------------------------------- /RegEx/RegularExpression/Group.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/RegularExpression/Group.regex.txt -------------------------------------------------------------------------------- /RegEx/RegularExpression/GroupName.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/RegularExpression/GroupName.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/RegularExpression/GroupName.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/RegularExpression/GroupName.regex.txt -------------------------------------------------------------------------------- /RegEx/RegularExpression/Quantifier.regex.input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/RegularExpression/Quantifier.regex.input.txt -------------------------------------------------------------------------------- /RegEx/RegularExpression/Quantifier.regex.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/RegularExpression/Quantifier.regex.output.txt -------------------------------------------------------------------------------- /RegEx/RegularExpression/Quantifier.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/RegularExpression/Quantifier.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/RegularExpression/Quantifier.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/RegularExpression/Quantifier.regex.txt -------------------------------------------------------------------------------- /RegEx/RegularExpression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/RegularExpression/README.md -------------------------------------------------------------------------------- /RegEx/RegularExpression/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/RegularExpression/README.ps1.md -------------------------------------------------------------------------------- /RegEx/Security/AccessToken.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Security/AccessToken.regex.ps1 -------------------------------------------------------------------------------- /RegEx/Security/JWT.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Security/JWT.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Security/JWT.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Security/JWT.regex.txt -------------------------------------------------------------------------------- /RegEx/Security/README.md: -------------------------------------------------------------------------------- 1 | This directory contains Regular Expressions related to Security. -------------------------------------------------------------------------------- /RegEx/SingleQuotedString.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/SingleQuotedString.regex.ps1 -------------------------------------------------------------------------------- /RegEx/StartsWithCapture.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/StartsWithCapture.regex.txt -------------------------------------------------------------------------------- /RegEx/Subtitle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Subtitle/README.md -------------------------------------------------------------------------------- /RegEx/Subtitle/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Subtitle/README.ps1.md -------------------------------------------------------------------------------- /RegEx/Subtitle/SRT.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Subtitle/SRT.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Subtitle/SRT.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Subtitle/SRT.regex.txt -------------------------------------------------------------------------------- /RegEx/Subtitle/VTT.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Subtitle/VTT.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Subtitle/VTT.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Subtitle/VTT.regex.txt -------------------------------------------------------------------------------- /RegEx/Symbol.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Symbol.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Symbol.regex.txt: -------------------------------------------------------------------------------- 1 | # Matches a Symbol 2 | \p{S} 3 | -------------------------------------------------------------------------------- /RegEx/Symbol/Currency.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Symbol/Currency.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Symbol/Currency.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Symbol/Currency.regex.txt -------------------------------------------------------------------------------- /RegEx/Symbol/Math.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Symbol/Math.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Symbol/Math.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Symbol/Math.regex.txt -------------------------------------------------------------------------------- /RegEx/Tag.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Tag.regex.txt -------------------------------------------------------------------------------- /RegEx/TrueOrFalse.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/TrueOrFalse.regex.txt -------------------------------------------------------------------------------- /RegEx/Unix/Conf_File.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Conf_File.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Unix/Conf_File.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Conf_File.regex.txt -------------------------------------------------------------------------------- /RegEx/Unix/Conf_Line.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Conf_Line.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Unix/Conf_Line.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Conf_Line.regex.txt -------------------------------------------------------------------------------- /RegEx/Unix/Conf_Section.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Conf_Section.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Unix/Conf_Section.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Conf_Section.regex.txt -------------------------------------------------------------------------------- /RegEx/Unix/Cron_Interval.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Cron_Interval.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Unix/Cron_Interval.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Cron_Interval.regex.txt -------------------------------------------------------------------------------- /RegEx/Unix/Duration.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Duration.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Unix/Duration.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Duration.regex.txt -------------------------------------------------------------------------------- /RegEx/Unix/FileSystemType.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/FileSystemType.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Unix/FileSystemType.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/FileSystemType.regex.txt -------------------------------------------------------------------------------- /RegEx/Unix/Mount.regex.input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Mount.regex.input.txt -------------------------------------------------------------------------------- /RegEx/Unix/Mount.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Mount.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Unix/Mount.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/Mount.regex.txt -------------------------------------------------------------------------------- /RegEx/Unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/README.md -------------------------------------------------------------------------------- /RegEx/Unix/README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/README.ps1.md -------------------------------------------------------------------------------- /RegEx/Unix/User.regex.input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/User.regex.input.txt -------------------------------------------------------------------------------- /RegEx/Unix/User.regex.source.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/User.regex.source.ps1 -------------------------------------------------------------------------------- /RegEx/Unix/User.regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/Unix/User.regex.txt -------------------------------------------------------------------------------- /RegEx/YAML/Key.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/YAML/Key.regex.ps1 -------------------------------------------------------------------------------- /RegEx/YAML/Value.regex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegEx/YAML/Value.regex.ps1 -------------------------------------------------------------------------------- /RegExQuickReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/RegExQuickReference.md -------------------------------------------------------------------------------- /SavedPatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/SavedPatterns.md -------------------------------------------------------------------------------- /Types/Irregular.Match.Extract/.get_EndIndex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Irregular.Match.Extract/.get_EndIndex.ps1 -------------------------------------------------------------------------------- /Types/Irregular.Match.Extract/.get_Input.ps1: -------------------------------------------------------------------------------- 1 | $this.Match.Result('$_') 2 | -------------------------------------------------------------------------------- /Types/Irregular.Match.Extract/.get_StartIndex.ps1: -------------------------------------------------------------------------------- 1 | $this.Match.Index 2 | -------------------------------------------------------------------------------- /Types/Irregular.Regex.Output.format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Irregular.Regex.Output.format.ps1 -------------------------------------------------------------------------------- /Types/Irregular.Regex.format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Irregular.Regex.format.ps1 -------------------------------------------------------------------------------- /Types/Irregular.Regular.Expression.format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Irregular.Regular.Expression.format.ps1 -------------------------------------------------------------------------------- /Types/Irregular.Regular.Expression/get_GroupNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Irregular.Regular.Expression/get_GroupNames.ps1 -------------------------------------------------------------------------------- /Types/Irregular.Regular.Expression/get_IsValid.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Irregular.Regular.Expression/get_IsValid.ps1 -------------------------------------------------------------------------------- /Types/Irregular.Regular.Expression/get_Pattern.ps1: -------------------------------------------------------------------------------- 1 | $this.ToString() 2 | -------------------------------------------------------------------------------- /Types/Match/Peek.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Match/Peek.ps1 -------------------------------------------------------------------------------- /Types/Match/System.Text.RegularExpressions.Match.format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Match/System.Text.RegularExpressions.Match.format.ps1 -------------------------------------------------------------------------------- /Types/Match/TypeName.txt: -------------------------------------------------------------------------------- 1 | System.Text.RegularExpressions.Match 2 | -------------------------------------------------------------------------------- /Types/Match/get_After.ps1: -------------------------------------------------------------------------------- 1 | $this.Result('$''') 2 | -------------------------------------------------------------------------------- /Types/Match/get_Before.ps1: -------------------------------------------------------------------------------- 1 | $this.Result('$`') 2 | -------------------------------------------------------------------------------- /Types/Match/get_Column.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Match/get_Column.ps1 -------------------------------------------------------------------------------- /Types/Match/get_EndIndex.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Match/get_EndIndex.ps1 -------------------------------------------------------------------------------- /Types/Match/get_Input.ps1: -------------------------------------------------------------------------------- 1 | $this.Result('$_') 2 | -------------------------------------------------------------------------------- /Types/Match/get_LastGroup.ps1: -------------------------------------------------------------------------------- 1 | $this.Result('$+') 2 | -------------------------------------------------------------------------------- /Types/Match/get_Line.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/Match/get_Line.ps1 -------------------------------------------------------------------------------- /Types/Match/get_StartIndex.ps1: -------------------------------------------------------------------------------- 1 | $this.Index 2 | -------------------------------------------------------------------------------- /Types/System.Text.RegularExpressions.RegEx.format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/Types/System.Text.RegularExpressions.RegEx.format.ps1 -------------------------------------------------------------------------------- /UpdateSavedPatterns.md.irregular.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/UpdateSavedPatterns.md.irregular.ps1 -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/action.yml -------------------------------------------------------------------------------- /assets/Irregular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/assets/Irregular.svg -------------------------------------------------------------------------------- /assets/Irregular_600_Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/assets/Irregular_600_Square.png -------------------------------------------------------------------------------- /assets/Irregular_85x85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/assets/Irregular_85x85.png -------------------------------------------------------------------------------- /assets/Irregular_Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/assets/Irregular_Wide.png -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- 1 | This directory contains asset files for Irregular -------------------------------------------------------------------------------- /assets/RegexSyntaxHighlighting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/assets/RegexSyntaxHighlighting.gif -------------------------------------------------------------------------------- /assets/RegexSyntaxHighlighting2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/assets/RegexSyntaxHighlighting2.gif -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/2021-10-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021-10-24.md -------------------------------------------------------------------------------- /docs/2021-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021-10.md -------------------------------------------------------------------------------- /docs/2021-11-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021-11-07.md -------------------------------------------------------------------------------- /docs/2021-11-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021-11-18.md -------------------------------------------------------------------------------- /docs/2021-11-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021-11-22.md -------------------------------------------------------------------------------- /docs/2021-11-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021-11-29.md -------------------------------------------------------------------------------- /docs/2021-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021-11.md -------------------------------------------------------------------------------- /docs/2021-12-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021-12-28.md -------------------------------------------------------------------------------- /docs/2021-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021-12.md -------------------------------------------------------------------------------- /docs/2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2021.md -------------------------------------------------------------------------------- /docs/2022-01-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-01-09.md -------------------------------------------------------------------------------- /docs/2022-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-01.md -------------------------------------------------------------------------------- /docs/2022-08-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-08-09.md -------------------------------------------------------------------------------- /docs/2022-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-08.md -------------------------------------------------------------------------------- /docs/2022-09-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-09-06.md -------------------------------------------------------------------------------- /docs/2022-09-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-09-12.md -------------------------------------------------------------------------------- /docs/2022-09-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-09-18.md -------------------------------------------------------------------------------- /docs/2022-09-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-09-22.md -------------------------------------------------------------------------------- /docs/2022-09-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-09-29.md -------------------------------------------------------------------------------- /docs/2022-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-09.md -------------------------------------------------------------------------------- /docs/2022-10-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-10-01.md -------------------------------------------------------------------------------- /docs/2022-10-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-10-16.md -------------------------------------------------------------------------------- /docs/2022-10-29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-10-29.md -------------------------------------------------------------------------------- /docs/2022-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-10.md -------------------------------------------------------------------------------- /docs/2022-12-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-12-15.md -------------------------------------------------------------------------------- /docs/2022-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022-12.md -------------------------------------------------------------------------------- /docs/2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2022.md -------------------------------------------------------------------------------- /docs/2023-07-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2023-07-20.md -------------------------------------------------------------------------------- /docs/2023-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2023-07.md -------------------------------------------------------------------------------- /docs/2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2023.md -------------------------------------------------------------------------------- /docs/2024-04-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2024-04-16.md -------------------------------------------------------------------------------- /docs/2024-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2024-04.md -------------------------------------------------------------------------------- /docs/2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/2024.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | irregular.start-automating.com -------------------------------------------------------------------------------- /docs/Compress-Regex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Compress-Regex.md -------------------------------------------------------------------------------- /docs/Export-RegEx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Export-RegEx.md -------------------------------------------------------------------------------- /docs/Get-RegEx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Get-RegEx.md -------------------------------------------------------------------------------- /docs/Import-RegEx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Import-RegEx.md -------------------------------------------------------------------------------- /docs/New-RegEx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/New-RegEx.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/RegExQuickReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/RegExQuickReference.md -------------------------------------------------------------------------------- /docs/Regular_Expression_Quick_Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Regular_Expression_Quick_Reference.md -------------------------------------------------------------------------------- /docs/Remove-RegEx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Remove-RegEx.md -------------------------------------------------------------------------------- /docs/SavedPatterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/SavedPatterns.md -------------------------------------------------------------------------------- /docs/Set-RegEx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Set-RegEx.md -------------------------------------------------------------------------------- /docs/Show-RegEx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Show-RegEx.md -------------------------------------------------------------------------------- /docs/Understanding_Regular_Expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Understanding_Regular_Expressions.md -------------------------------------------------------------------------------- /docs/Use-RegEx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Use-RegEx.md -------------------------------------------------------------------------------- /docs/Using_Regular_Expressions_In_PowerShell.walkthru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/Using_Regular_Expressions_In_PowerShell.walkthru.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | permalink: pretty 2 | assets: 3 | cache: false -------------------------------------------------------------------------------- /docs/_posts/2021-10-24-Irregular-v0.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2021-10-24-Irregular-v0.6.1.md -------------------------------------------------------------------------------- /docs/_posts/2021-10-24-Irregular-v0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2021-10-24-Irregular-v0.6.md -------------------------------------------------------------------------------- /docs/_posts/2021-11-07-Irregular-v0.6.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2021-11-07-Irregular-v0.6.2.md -------------------------------------------------------------------------------- /docs/_posts/2021-11-18-Irregular-v0.6.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2021-11-18-Irregular-v0.6.3.md -------------------------------------------------------------------------------- /docs/_posts/2021-11-22-Irregular-v0.6.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2021-11-22-Irregular-v0.6.4.md -------------------------------------------------------------------------------- /docs/_posts/2021-11-29-Irregular-v0.6.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2021-11-29-Irregular-v0.6.5.md -------------------------------------------------------------------------------- /docs/_posts/2021-12-28-Irregular-0.6.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2021-12-28-Irregular-0.6.6.md -------------------------------------------------------------------------------- /docs/_posts/2022-01-09-Irregular-0.6.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-01-09-Irregular-0.6.7.md -------------------------------------------------------------------------------- /docs/_posts/2022-08-09-Irregular-0.6.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-08-09-Irregular-0.6.8.md -------------------------------------------------------------------------------- /docs/_posts/2022-09-06-Irregular-0.6.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-09-06-Irregular-0.6.9.md -------------------------------------------------------------------------------- /docs/_posts/2022-09-12-Irregular-0.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-09-12-Irregular-0.7.0.md -------------------------------------------------------------------------------- /docs/_posts/2022-09-18-Irregular-0.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-09-18-Irregular-0.7.1.md -------------------------------------------------------------------------------- /docs/_posts/2022-09-22-Irregular-0.7.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-09-22-Irregular-0.7.2.md -------------------------------------------------------------------------------- /docs/_posts/2022-09-29-Irregular-0.7.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-09-29-Irregular-0.7.3.md -------------------------------------------------------------------------------- /docs/_posts/2022-10-01-Irregular-0.7.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-10-01-Irregular-0.7.4.md -------------------------------------------------------------------------------- /docs/_posts/2022-10-16-Irregular-0.7.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-10-16-Irregular-0.7.5.md -------------------------------------------------------------------------------- /docs/_posts/2022-10-29-Irregular-0.7.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-10-29-Irregular-0.7.6.md -------------------------------------------------------------------------------- /docs/_posts/2022-12-15-Irregular-0.7.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2022-12-15-Irregular-0.7.7.md -------------------------------------------------------------------------------- /docs/_posts/2023-07-20-Irregular-0.7.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2023-07-20-Irregular-0.7.8.md -------------------------------------------------------------------------------- /docs/_posts/2024-04-16-Irregular-0.7.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/_posts/2024-04-16-Irregular-0.7.9.md -------------------------------------------------------------------------------- /docs/assets/Irregular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/assets/Irregular.svg -------------------------------------------------------------------------------- /docs/assets/Irregular_600_Square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/assets/Irregular_600_Square.png -------------------------------------------------------------------------------- /docs/assets/Irregular_85x85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/assets/Irregular_85x85.png -------------------------------------------------------------------------------- /docs/assets/Irregular_Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/assets/Irregular_Wide.png -------------------------------------------------------------------------------- /docs/assets/RegexSyntaxHighlighting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/assets/RegexSyntaxHighlighting.gif -------------------------------------------------------------------------------- /docs/assets/RegexSyntaxHighlighting2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/assets/RegexSyntaxHighlighting2.gif -------------------------------------------------------------------------------- /docs/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/docs/rss.xml -------------------------------------------------------------------------------- /en-us/Regular_Expression_Quick_Reference.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/en-us/Regular_Expression_Quick_Reference.help.txt -------------------------------------------------------------------------------- /en-us/Understanding_Regular_Expressions.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/en-us/Understanding_Regular_Expressions.help.txt -------------------------------------------------------------------------------- /en-us/Using_Regular_Expressions_In_PowerShell.walkthru.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/en-us/Using_Regular_Expressions_In_PowerShell.walkthru.help.txt -------------------------------------------------------------------------------- /en-us/about_Irregular.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Irregular/HEAD/en-us/about_Irregular.help.txt --------------------------------------------------------------------------------