ArrayReplace – A Replace routine that works through all the items of the input array

ArrayReplace – A Replace routine that works through all the items of the input array

' A Replace routine that works through all the items of the input array'' Example:'   Dim arr As Integer() = {3, 7, 8, 2, 7, 0, 9, 7}'   ArrayReplace(arr, 7, 100)'   Dim o As Object'   For Each o In arr'       Debug.Write(o & " ")'   Next'   Debug.WriteLine("")Sub ArrayReplace(ByVal arr As Array, ByVal search As Object, _    ByVal repl As Object)    ArrayReplace(arr, search, repl, arr.GetLowerBound(0), arr.GetUpperBound(0))End Sub' This overloaded version allows you to specify which portion of the array ' should be consideredSub ArrayReplace(ByVal arr As Array, ByVal search As Object, _    ByVal repl As Object, ByVal first As Integer, ByVal last As Integer)    Dim exitLoop As Boolean    Do        ' search the array for the specified  object        Dim i As Integer = Array.IndexOf(arr, search, first, last - first + 1)        ' if found, replace it and keep searching        If i > -1 Then            arr.SetValue(repl, i)        Else            ' otherwise exit the loop            exitLoop = True        End If    Loop Until exitLoopEnd Sub

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several