| View previous topic :: View next topic |
| Author |
Message |
PhiLho
Joined: 27 Dec 2005 Posts: 6702 Location: France (near Paris)
|
Posted: Wed Feb 15, 2006 11:55 am Post subject: |
|
|
"Small documentation glitches"
"Suggestions on documentation improvements"
"Please tidy up this f... doc!" (f for frightening...) Just joking!
Etc. _________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2") |
|
| Back to top |
|
 |
JSLover
Joined: 20 Dec 2004 Posts: 542 Location: LooseChange911.com... the WTC attacks were done by the US Gov't... the official story is a lie...
|
Posted: Wed Feb 15, 2006 12:19 pm Post subject: |
|
|
| SanskritFritz wrote: | Suggestions please  |
| Chris wrote: | | Please continue to report typos in the documentation whenever you notice them. |
Documentation typos _________________
LooseChange911.com • See Loose Change (click image!) • LC Blog |
|
| Back to top |
|
 |
PhiLho
Joined: 27 Dec 2005 Posts: 6702 Location: France (near Paris)
|
Posted: Wed Feb 15, 2006 12:28 pm Post subject: |
|
|
| JSLover wrote: | | Documentation typos |
Why not, but a bit restrictive: when I suggest to add a link to a related page, for example, this is not a typo. _________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2") |
|
| Back to top |
|
 |
SanskritFritz
Joined: 17 Feb 2005 Posts: 283 Location: Hungary, Budapest
|
Posted: Wed Feb 15, 2006 3:14 pm Post subject: |
|
|
"Suggestions on documentation improvements" should make it
 _________________ Is there another word for synonym? |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10450
|
Posted: Wed Feb 15, 2006 7:32 pm Post subject: |
|
|
| I've corrected the items mentioned a few posts back. Thanks. |
|
| Back to top |
|
 |
cf Guest
|
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10450
|
Posted: Sat Feb 18, 2006 4:29 pm Post subject: |
|
|
| That's been fixed; thanks. |
|
| Back to top |
|
 |
SanskritFritz
Joined: 17 Feb 2005 Posts: 283 Location: Hungary, Budapest
|
Posted: Tue Apr 10, 2007 3:23 pm Post subject: |
|
|
Again, in WinMenuSelectItem, "If this and the other 3 window parameters are blank or omitted" seems to be wrong. _________________ Is there another word for synonym? |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10450
|
Posted: Wed Apr 11, 2007 1:54 pm Post subject: |
|
|
| It seems okay because there's an ExcludeTitle and ExcludeText parameter at the end of the parameter list, which makes a total of four window parameters. But maybe I'm missing something. |
|
| Back to top |
|
 |
SanskritFritz
Joined: 17 Feb 2005 Posts: 283 Location: Hungary, Budapest
|
Posted: Thu Apr 12, 2007 8:45 am Post subject: |
|
|
Oops, yes true. Sorry for that, I was too quick to report it! _________________ Is there another word for synonym? |
|
| Back to top |
|
 |
toralf
Joined: 31 Jan 2005 Posts: 3842 Location: Bremen, Germany
|
Posted: Thu May 24, 2007 4:16 pm Post subject: |
|
|
In the manual on FileSelectFolder
is an example how to remove a backslash | Code: | FileSelectFolder, Folder
StringRight, LastChar, Folder, 1
if LastChar = \
StringTrimRight, Folder, Folder, 1 ; Remove the trailing backslash | With RegEx, this can be simplified to | Code: | FileSelectFolder, Folder
Folder := RegExReplace(Folder, "\\$") ; Remove trailing backslash
|
_________________ Ciao
toralf  |
|
| Back to top |
|
 |
PhiLho
Joined: 27 Dec 2005 Posts: 6702 Location: France (near Paris)
|
Posted: Thu May 24, 2007 5:38 pm Post subject: |
|
|
Just in case, to reflect the conditional:
| Code: | FileSelectFolder, Folder
Folder := RegExReplace(Folder, "\\?$") ; Remove trailing backslash if any
|
_________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2") |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10450
|
Posted: Fri May 25, 2007 10:16 pm Post subject: |
|
|
Thanks; I've changed it to use that method.
| PhiLho wrote: | | Just in case, to reflect the conditional. | I omitted the question mark because it doesn't seem necessary; but maybe I missed something. |
|
| Back to top |
|
 |
PhiLho
Joined: 27 Dec 2005 Posts: 6702 Location: France (near Paris)
|
Posted: Sat May 26, 2007 8:23 am Post subject: |
|
|
You are right, if the trailing backslash isn't here, the RE won't match and the string won't be changed. So my remark was useless. _________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2") |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 5957 Location: Pacific Northwest, US
|
Posted: Sat Jun 02, 2007 7:10 pm Post subject: |
|
|
minor typo - key list - special keys section
detectible -> detectable _________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| Back to top |
|
 |
|