compare a string and trim in vb.net
Posted
by referr
on Stack Overflow
See other posts from Stack Overflow
or by referr
Published on 2010-04-09T18:47:07Z
Indexed on
2010/04/09
18:53 UTC
Read the original article
Hit count: 416
I have this string that shall come in from another file. The string has maximum length of 102 digits. I need to compare the string with numbers in a pair and delete those form that string.
e.g - 6125223659587412563265... till 102
numbers that compare with this string-
first set - 61
new string = 25223659587412563265
second set - 36
new string = 252259587412563265
and so on. the set of numbers shall go to maximum of 51 pairs = 102, which shall give an end result of string = "" How can i achieve this in a loop?
© Stack Overflow or respective owner