Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

JScript String Object fixed Method

Places HTML <TT> tags around text in a String object.

Syntax: JScript String Object fixed Method

strVariable.fixed( )

"String Literal".fixed( )

Arguments: JScript String Object fixed Method

strVariable

A String object.

Remarks: JScript String Object fixed Method

The example that follows demonstrates how the fixed method works:

var strVariable = "This is a string object";

strVariable = strVariable.fixed( );

The value of strVariable after the last statement is:

<TT>This is a string object</TT>

No check is done to see if the tag already exists.

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.