Re: Insert and delete Commas

2002-09-29 Thread Ken Ray
Robert, Ken, please excuse my delay in thanking you for your input. No problem. :-) Reading the applicable docs has not enabled me figure out how to implement Regular Expressions. It will be appreciated if you would give an example of how to implement ([-]?) etc. I assume a script is

Re: Insert and delete Commas

2002-09-29 Thread Robert Presender
Ken, On Sunday, September 29, 2002, at 03:49 AM, you wrote: snip Robert, Reading the applicable docs has not enabled me figure out how to implement Regular Expressions. It will be appreciated if you would give an example of how to implement ([-]?) etc. I assume a script is required.

Re: Insert and delete Commas

2002-09-29 Thread Ken Ray
I discovered the culprit to be a wrap around of the long ' if' line. I typed in a backslash and hit pay dirt. Your script works great. I guess the moral of the story is: Copy correctly! I know what you mean, Robert... it's happened to me before. :-) Ken Ray Sons of Thunder Software

Re: Insert and delete Commas

2002-09-28 Thread Robert Presender
Ken, please excuse my delay in thanking you for your input. Reading the applicable docs has not enabled me figure out how to implement Regular Expressions. It will be appreciated if you would give an example of how to implement ([-]?) etc. I assume a script is required. If so, what would

Re: Insert and delete Commas

2002-09-19 Thread Ken Ray
It's on my to do list... ;-) Ken Ray Sons of Thunder Software Email: [EMAIL PROTECTED] Web Site: http://www.sonsothunder.com/ - Original Message - From: Yves Coppé [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 18, 2002 1:45 PM Subject: Re: Insert and delete Commas

Re: Insert and delete Commas

2002-09-19 Thread Robert Presender
Thanks for your input Ken. Your approach is over my head at the present time. Will await your to do list. Regards ... Bob On Thursday, September 19, 2002, at 04:43 AM, Ken Ray wrote: It's on my to do list... ;-) ___ use-revolution mailing

Insert and delete Commas

2002-09-18 Thread Robert Presender
The following custom handlers(?) are used in an application developed in SuperCard. They are used for math processes such as addition, subtraction, etc.. They work in Rev. Would appreciate any comments relating to shorting or modifying the scripts or a different approach. The scripts are to

Re: Insert and delete Commas

2002-09-18 Thread [EMAIL PROTECTED]
err... check the docs for evaluate why do it yourself if they can do it for you? Am Mittwoch, 18.09.02 um 15:24 Uhr schrieb Robert Presender: The following custom handlers(?) are used in an application developed in SuperCard. They are used for math processes such as addition,

Re: Insert and delete Commas

2002-09-18 Thread Jan Schenkel
Hi Bob, During a rare awake moment I also rescripted your other handler. This should handle very long numbers better than the SuperCard functions, as well... on insertCommaCd startNum, finishNum --syntax: insertCommaCd --[integer, integer] repeat with x = startNum to finishNum put

Re: Insert and delete Commas

2002-09-18 Thread Dar Scott
On Wednesday, September 18, 2002, at 09:54 AM, Jan Schenkel wrote: on insertCommaCd startNum, finishNum ... put insertCommas(fld x) into fld x ... end insertCommaCd function insertCommas pNumber ... end insertCommas Robert, Jan's example speaks much better than my ramblings about

Re: Insert and delete Commas

2002-09-18 Thread Ken Ray
Site: http://www.sonsothunder.com/ - Original Message - From: Jan Schenkel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 18, 2002 10:54 AM Subject: Re: Insert and delete Commas Hi Bob, During a rare awake moment I also rescripted your other handler. This should

Re: Insert and delete Commas

2002-09-18 Thread Yves Coppé
Or, using Regular Expressions (my fave): And to explain the regEx (which is something I do every time I make a regex post), here's how it breaks up: Ken, you should make a stack or something that explains the ground of RegEx. ! Thanks. -- Greetings. Yves COPPE Email : [EMAIL PROTECTED]

Re: Insert and delete Commas

2002-09-18 Thread Ken Ray
, September 18, 2002 4:56 PM Subject: Re: Insert and delete Commas Hi Ken, Congratulations on yet another excellent regular expression solution. It's just not an automated response in my brain set ;-) And what-do-you-know : Ken's version even fits in the Starter Kit 10-lines limit. Now where