icinga-powershell-framework/lib/core/tools/Get-IcingaMaxTextLength.psm1
2021-08-13 22:06:22 +02:00

16 lines
274 B
PowerShell

function Get-IcingaMaxTextLength()
{
param (
[array]$TextArray = ''
);
[int]$MaxLength = 0;
foreach ($text in $TextArray) {
if ($MaxLength -lt $text.Length) {
$MaxLength = $text.Length;
}
}
return $MaxLength;
}