But how'd he do it with Left$ and Right$?
You know I was looking at this and looking at 34 and 42 and then looking at this and... WTH?Code: QB64: [Select]
lineToPrint$ = "1234567890123456789012345678901234" lineToPrint$ = " 123456789012345678901234567890123456789012" lineToPrint$ = "| 9:30 AM N-the lobby between 10:13 AM-N |"
Oh! you started recounting at 34!
QB64 doesn't handle the ":" character properly with string manipulationNo, it printsCode: QB64: [Select]prints out the empty string i.e. || with nothing in between
|:|
The code you provided above doesn't use MID$(), and we have no idea what your custom Middle$() function is doing.@FellippeHeitor
I was able to undo to get the exact code. The string assigned to checkForTime$ is "6:30 AM". It is read from a text file using a LINE INPUT and then passed to the SUB with this codeCode: QB64: [Select]checkForTime$ prints out at the top correctly
colon$ = Middle$(checkForTime$, 2, 1) aSpace$ = Middle$(checkForTime$, 5, 1) aORp$ = Middle$(checkForTime$, 6, 1) m$ = Middle$(checkForTime$, 7, 1) t$ = P$(1)'wait for a key press timeThere = TRUE
The line below it prints out "6" and nothing else
This line is screwed up, I am curious why no error?
d2$ is the same as DIM d2 AS STRING
d$2 is the same as DIM d AS STRING * 2
IF LEN(checkForTime$) = 7 THEN
d1$ = Middle$(checkForTime$, 1, 1): digit1 = VAL(d1$)
colon$ = Middle$(checkForTime$, 2, 1)
I'm telling you, my strings aren't working right. I don't use graphics, I do everything in strings. Check out my CryptoGram.bas to see what I'm talking about. I posted it a while ago. I don't know if it's still on the boards. I'm pretty good with string manipulation. I admonish there's a possibility there was an error in my code but at this point I either don't know everything I need to (when a QB64 function takes a 'byte' as a variable for example), my computer has a personal issue with me or there's an internal error in QB64. I rewrote that portion of the code a little differently but the files the LINE INPUTs come from has a lot of text and also times. The idea was to make sure that the only thing to code for was at a specific place in the input line and that it was definitely a time at that location. If something in the future that gives me significant difficulty, I'll post it.
what ,what and what
i must say that i am surprised with MID$
it is such a simple and elegant string function which return subString ...right?
mark says :
mid$( t$, len) ..yes it is ok but not for everyone....it should be standard
MID$ ( target_string, start_Pos, Len_Of_substring)
mark says :
mid$( t$, len) ..yes it is ok but not for everyone....it should be standard