| View previous topic :: View next topic |
| Author |
Message |
Roflkatoffel Guest
|
Posted: Tue May 01, 2007 11:01 am Post subject: string length |
|
|
little quick question:
how long can a string be?
i have a very very long string but ahk cuts the last part of and says ... ... ... |
|
| Back to top |
|
 |
Rabiator
Joined: 17 Apr 2005 Posts: 265 Location: Sauerland
|
Posted: Tue May 01, 2007 1:09 pm Post subject: Re: string length |
|
|
| Roflkatoffel wrote: | little quick question:
how long can a string be?
i have a very very long string but ahk cuts the last part of and says ... ... ... | Strings can only be very long (not very very ). Have a look at "Variables and Expressions" in the manual, section "Variable Capacity and Memory". |
|
| Back to top |
|
 |
PhiLho
Joined: 27 Dec 2005 Posts: 6721 Location: France (near Paris)
|
Posted: Tue May 01, 2007 4:45 pm Post subject: |
|
|
Let me guess... It says ... in the ListVars page? This is to preserve readability of the shown info.
If you display it with MsgBox, for example, it should be intact. Of if very long, you can FileAppend it to verify.
The exact maximum length is somewhere in the manual, but I believe/guess it should be several megabytes, perhaps up to 2 or 4 GB (if your computer supports this!). _________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2") |
|
| Back to top |
|
 |
|