ReplaceLast – Replace the last occurrence of a substring

ReplaceLast – Replace the last occurrence of a substring

' Replace the last occurrence of a stringFunction ReplaceLast(Expression As String, Find As String, ReplaceStr As String, _    Optional Compare As VbCompareMethod) As String    Dim i As Long    i = InStrRev(Expression, Find, , Compare)    If i Then        ' the search string is there        ' note that the Replace function trims the first part        ' of the string, so we must restore it using Left$        ReplaceLast = Left$(Expression, i - 1) & Replace(Expression, Find, _            ReplaceStr, i, 1, Compare)    Else        ' the search string isn't there        ReplaceLast = Expression    End IfEnd Function

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

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