TextUtility icon indicating copy to clipboard operation
TextUtility copied to clipboard

Microsoft.PowerShell.TextUtility module

Results 22 TextUtility issues
Sort by recently updated
recently updated
newest added
trafficstars

I would really love to see this command added. PS has been missing an **easy** way to modify files since v1. This comes in so handy for build systems. Our...

Handy for generating random text. See https://github.com/Pscx/Pscx/blob/master/Src/Pscx/Commands/Text/GetLoremIpsumCommand.cs for a particular implementation. Feel free to borrow as much (or little) of this as you want.

More often than not, my use cases for base64 involve files. This leads to a large amount of boilerplate code. This could be reduced if support for reading from and...

This one is more of a nice-to-have feature, but it could be very beneficial to add support for [multibase encoding](https://github.com/multiformats/multibase). Multibase is a relatively simple encoding that uses a single...

Base64Url support should be a built-in feature of PowerShell in my mind, but I could settle for importing a module that does it well. There are a lot of blog...

Equivalent to `ConvertFrom-String` for converting text output from native commands to an object, but will probably work differently than the WinPS cmdlet

Unlike `Select-String`, this cmdlet would select off the `Out-String` output of an object. For tables, it should allow retaining the table header.

# PR Summary I am not sure why the tests does not work. It seems to be related to when $TestCases is set and perhaps it is related to Pester...

This is a work in progress but I wanted to show what I've got so far. There are plenty of design decisions to be made on this command. Right now...