Microsoft® JScript String Object |
Language Reference Version 1 |
Allows manipulation and formatting of text strings and determination and location of substrings within strings.
StringObj[.method]
"String Literal"[.method]
String objects can be created implicitly using string literals. String objects created in this fashion (referred to as standard strings) are treated differently than String objects created using the new operator. All string literals share a common, global string object. So, if a property is added to a string literal, it is available to all standard string objects:var alpha, beta alpha = "This is a string" beta = "This is also a string" alpha.test = 10In this example, test is now also defined for beta and all future string literals. In the next example, however, added properties are treated differently:
var gamma, delta gamma = new String("This is a string") delta = new String("This is also a string") gamma.test = 10In this case, test is not defined for delta. Each String object declared in this fashion has its own set of members. This is the only case where String objects and string literals are handled differently.
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/language/jscript/js604.htm, 3KB, , updated: 1997/9/30 03:44, local time: 2024/11/1 01:34,
3.15.25.254: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://massmind.ecomorder.com/Techref/language/jscript/js604.htm"> String Object</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.