icinga-powershell-framework/lib/core/tools/Get-IcingaMaxTextLength.psm1

17 lines
274 B
PowerShell
Raw Normal View History

2021-07-16 15:38:08 -04:00
function Get-IcingaMaxTextLength()
{
param (
[array]$TextArray = ''
);
[int]$MaxLength = 0;
foreach ($text in $TextArray) {
if ($MaxLength -lt $text.Length) {
$MaxLength = $text.Length;
}
}
return $MaxLength;
}