Matt Wegrzyn
Member since Jan 22, 2009
- Profile: /members/2816-matt-wegrzyn.htm
- Comments: 2
Recent Blog Comments By Matt Wegrzyn
-
Ask Ben: Iterating Over The Characters In A String
Posted on Jan 23, 2009 at 2:09 PM
Not much strength either ;). But recently I found a bug in Coldfusion where Coldfusion forces IIS to close a connection even if you have Keep-Alive enabled. This is due to Coldfusion not passing a "Content-Length" response header as it should. I have to calculate the document size and then return i... read more »
-
Ask Ben: Iterating Over The Characters In A String
Posted on Jan 22, 2009 at 11:29 PM
If you want to get the length with unicode characters, then you need to use GetBytes("UTF8") instead of GetBytes(). Then you can do either Len(ArrBytes) or ArrayLen(ArrBytes) to get the number of bytes.... read more »