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);
}
See also:
| file: /Techref/language/asp/js/Left.htm, 0KB, , updated: 2003/4/15 14:50, local time: 2012/5/22 21:48,
38.107.179.233:LOG IN |
| ©2012 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://www.ecomorder.com/techref/language/asp/js/Left.htm"> language asp js Left</A> |
| Did you find what you needed? |
THE book for getting started with the PIC uC!
5 stars at Amazon.com
Now available from ecomorder.com for $34.95 ($7.50 S&H)
|
|
.