├── DoTests.ps1 ├── InstallModule.ps1 ├── LICENSE ├── PSStringScanner.psd1 ├── PSStringScanner.psm1 ├── PublishToGallery.ps1 ├── README.md ├── __tests__ ├── PSStringScanner.tests.ps1 ├── PSStringScannerEx.tests.ps1 ├── PSStringScannerHealth.tests.ps1 └── PSStringScannerTypeData.tests.ps1 ├── azure-pipelines.yml ├── examples ├── Calc.ps1 ├── ConvertIPConfig.ps1 ├── CountCharTypes.ps1 ├── CountryInfo.txt ├── GetAllMatching.ps1 ├── GetGitMergeOnly.ps1 ├── GetTextInParens.ps1 ├── HiddenGem.ps1 ├── ParseConfig.ps1 ├── ParseLogKVP.ps1 ├── RobotParser.ps1 ├── ScanStringForNumbers.ps1 ├── SimpleHtmlParser.ps1 ├── UseScanMethodOnStringType.ps1 ├── WordFrequencyAnalysis.ps1 ├── config.txt └── logkvp.txt ├── images └── ParseConfig.png └── videos └── StrScan.mp4 /DoTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/DoTests.ps1 -------------------------------------------------------------------------------- /InstallModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/InstallModule.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/LICENSE -------------------------------------------------------------------------------- /PSStringScanner.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/PSStringScanner.psd1 -------------------------------------------------------------------------------- /PSStringScanner.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/PSStringScanner.psm1 -------------------------------------------------------------------------------- /PublishToGallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/PublishToGallery.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/PSStringScanner.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/__tests__/PSStringScanner.tests.ps1 -------------------------------------------------------------------------------- /__tests__/PSStringScannerEx.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/__tests__/PSStringScannerEx.tests.ps1 -------------------------------------------------------------------------------- /__tests__/PSStringScannerHealth.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/__tests__/PSStringScannerHealth.tests.ps1 -------------------------------------------------------------------------------- /__tests__/PSStringScannerTypeData.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/__tests__/PSStringScannerTypeData.tests.ps1 -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /examples/Calc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/Calc.ps1 -------------------------------------------------------------------------------- /examples/ConvertIPConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/ConvertIPConfig.ps1 -------------------------------------------------------------------------------- /examples/CountCharTypes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/CountCharTypes.ps1 -------------------------------------------------------------------------------- /examples/CountryInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/CountryInfo.txt -------------------------------------------------------------------------------- /examples/GetAllMatching.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/GetAllMatching.ps1 -------------------------------------------------------------------------------- /examples/GetGitMergeOnly.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/GetGitMergeOnly.ps1 -------------------------------------------------------------------------------- /examples/GetTextInParens.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/GetTextInParens.ps1 -------------------------------------------------------------------------------- /examples/HiddenGem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/HiddenGem.ps1 -------------------------------------------------------------------------------- /examples/ParseConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/ParseConfig.ps1 -------------------------------------------------------------------------------- /examples/ParseLogKVP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/ParseLogKVP.ps1 -------------------------------------------------------------------------------- /examples/RobotParser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/RobotParser.ps1 -------------------------------------------------------------------------------- /examples/ScanStringForNumbers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/ScanStringForNumbers.ps1 -------------------------------------------------------------------------------- /examples/SimpleHtmlParser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/SimpleHtmlParser.ps1 -------------------------------------------------------------------------------- /examples/UseScanMethodOnStringType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/UseScanMethodOnStringType.ps1 -------------------------------------------------------------------------------- /examples/WordFrequencyAnalysis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/WordFrequencyAnalysis.ps1 -------------------------------------------------------------------------------- /examples/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/config.txt -------------------------------------------------------------------------------- /examples/logkvp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/examples/logkvp.txt -------------------------------------------------------------------------------- /images/ParseConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/images/ParseConfig.png -------------------------------------------------------------------------------- /videos/StrScan.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinke/PSStringScanner/HEAD/videos/StrScan.mp4 --------------------------------------------------------------------------------