function Left(str, n) /*** IN: str - the string we are LEFTing n - the number of characters we want to return RETVAL: n characters from the left side of the string ***/ { if (n <= 0) // Invalid bound, return blank string return ""; else if (n > String(str).length) // Invalid bound, return return str; // entire string else // Valid bound, return appropriate substring return String(str).substring(0,n); }
file: /Techref/language/asp/js/Left.htm, 0KB, , updated: 2003/4/15 13:50, local time: 2024/11/5 20:31,
18.118.24.228:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/language/asp/js/Left.htm"> language asp js Left</A> |
Did you find what you needed? |