[REBOL] Re: Load of trouble?

2001-12-01 Thread Gabriele Santilli
Hello [EMAIL PROTECTED]! On 30-Nov-01, you wrote: S I have a raw string entered by a user: S raw-input: 12-may-87 S It is supposed to be a date (in this case). I want to convert S it to its internal Rebol format, and see if it is valid. When handling dates, I'd suggest to use

[REBOL] Constant size string variable?

2001-12-01 Thread Bob Paddock
Once again I'm working on my patent downloading script, that you can now find in the library. I need a string variable that is always ten characters long. A variable number of digits or letters from 1 to 10 might be entered in a dialog box. If less than ten are entered those character

[REBOL] Re: Constant size string variable?

2001-12-01 Thread Tom Conlin
pad: ++ == ++ str: 123 == 123 insert str skip pad (length? str) == 123 str == +++123 seems ok On Sat, 1 Dec 2001, Bob Paddock wrote: Once again I'm working on my patent downloading script, that you can now find in the library. I need a string variable that is