mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
17 lines
277 B
PowerShell
17 lines
277 B
PowerShell
|
|
function Add-IcingaWhiteSpaceToString()
|
||
|
|
{
|
||
|
|
param (
|
||
|
|
[string]$Text = '',
|
||
|
|
[int]$Length = 0
|
||
|
|
);
|
||
|
|
|
||
|
|
[int]$LengthOffset = $Length - $Text.Length;
|
||
|
|
|
||
|
|
while ($LengthOffset -gt 0) {
|
||
|
|
$Text += ' ';
|
||
|
|
$LengthOffset -= 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
return $Text;
|
||
|
|
}
|