jhylands

Matt help!

Jan 1st, 2013
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.57 KB | None | 0 0
  1.         'fetching the first block
  2.         'get the boundries of the first block
  3.         Dim SOBlock, EOBlock As Integer
  4.         SOBlock = InStr(Condition, "|")
  5.         EOBlock = InStr(SOBlock + 1, Condition, "|")
  6.  
  7.         'trimmings starts off by holding the bit that will be used this time and then ...
  8.         '...holds the sentence with that particular trimming in
  9.         Dim trimmings() As String = cut(Mid(Condition, SOBlock, EOBlock - SOBlock))
  10.         For i = 0 To trimmings.GetLength(0) - 1
  11.             trimmings(i) = stich(trimmings(i), Condition, SOBlock, EOBlock)
  12.         Next
Advertisement
Add Comment
Please, Sign In to add comment