I want to do the following:
A='100100100'
B='101010101'
I want to have a result of A or B:
C='101110101'
Anyone has suggestions?
I want to do the following:
A='100100100'
B='101010101'
I want to have a result of A or B:
C='101110101'
Anyone has suggestions?
http://devedge.netscape.com/library/man … ml#1042500
Also: why do you store bits as a string? That’s very confusing for a computer!
I need this for the following.
I want to make a bar which shows appointment of 1 user of 1 day.
Normally this would be a easy. But I have the problem that appointments can overlap.
So every digit is a quarter of an hour.
1 is busy
0 is not busy
If an appointment overlaps I could use the OR statement.
But I’m working on another solution to make this happen…The above method is an expensive operation.
But the link you provided gives me great information. thankx