Alban LOPEZ

Results 5 issues of Alban LOPEZ

improove regexp to match only valid MAC-Adress (([0-9a-fA-F]{2})(:[0-9a-fA-F]{2}){5})|(([0-9a-fA-F]{4})(:[0-9a-fA-F]{4}){2})

improove regexp to match only valid IP-Adress (25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3} see http://stackoverflow.com/questions/106179/regular-expression-to-match-hostname-or-ip-address/14453696#14453696

``` PARAMETER FindingColumns Specifies the column(s) to search Value or NotValue PARAMETER NotValue Specifies the value to not match in all column (param FindingColumns is recomanded) ```

``` function Find-DataGridViewValue { # https://github.com/lazywinadmin/WinFormPS/blob/master/WinFormPS.psm1 Find-DataGridViewValue -DataGridView $datagridview1 -Value $textbox1.Text This will find the value and select the cell(s) .EXAMPLE PS C:\> Find-DataGridViewValue -DataGridView $datagridview1 -Value $textbox1.Text -RowForeColor 'Red'...