11. april 2008 - 23:00Der er
2 kommentarer og 1 løsning
Find a marker
Hi everyone! I need a code that can indentify a marker in a row of digits. The first part can very in number of digits and then comes the sign = followed by a new set of digits. 00000......=000002000........ The code should give True or False on the question if the sixth digit after the marker = is 2?
Måske ikke så elegant, men det får være en tidlig morgen og den fungerer:
Dim Vara As Byte Dim VARb As Byte Dim streng As Byte Vara = Len(Left(String:=DIT FELT, length:=(InStr(1, DIT FELT, "=", 1)))) + 1 VARb = Mid(DIT FELT, Vara, 6) streng = VARb If Right(String:=streng, length:=1) = 2 Then MsgBox "det 6. ciffer er 2." Else: MsgBox "det 6. ciffer er ikke 2." End If
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.