| http://www.w3.org/ns/prov#value | - e string starting at the 6th character and ending at the 14th (6 + 8) character.here is an example for processing each character of a string:[code]Dim xStr as String, yStr as String, i as LongxStr = This is a stringFor i = 1 to Len(xStr) yStr = yStr & Mid(xStr, i, 1) & NextMsgBox yStr[/code]as you see, this adds a space between each character in xStr and saves it in yStr, so for processing eac
|