Quote Originally Posted by plenderj
Try it

VB Code:
  1. Dim strText As String = "blah <sOmEtAg>blah></someTAg> blah <sOmEtAg>blah></someTAg> blah <sOmEtAg>blah></someTAg> "
  2.         Dim strArr() As String = Split(strText, "<")
  3.         Dim i As Integer
  4.         For i = 0 To UBound(strArr)
  5.             strArr(i) = LCase(strArr(i))
  6.         Next
  7.         MsgBox(Join(strArr, "<"))
Ignoring the fact that your Dim statements are invalid , my point which I apparently didn't make was that unless you know where the "<" symbols were to begin with, your code would change everything to lower case so you might as well just do

strText = LCase(strText)