VBA – Extracting text from string between two identical characters using VBA

Automation of Excel is actually pretty interesting task. VBA is indeed the best built-in tool for this and although there is a lot of “hate” towards it it really deserves to be taken into account seriously, at least for small daily tasks. For tougher tasks, it is probably not the best weapon of choice of anybody, but there are cases when programming with VBA indeed causes the “WOW” effect.

In this example I will present a small piece of code, which actually takes the longest possible string between two identical characters in Excel. Imagine that this is what is needed:

In A1 there is a simple text and in A2 there is a substring of this text, containing the longest string between two dots. Working with a User-Defined Function (UDF) in Excel is the way to do this really nicely:

In order to make the UDF work, these should be made Public or put in the Worksheet module of the worksheet, where they should be used.

Cheers!

Tagged with: , , ,