WMLScript Tutorial
WMLScript HOME
WMLScript Intro
WMLScript How to
WML Libraries
WML Dialogs
WML Float
WML Lang
WML String
WML URL
WML Browser
Selected Reading
Web Statistics
Web Glossary
Web Hosting
Web Quality
W3Schools Tutorials
W3Schools Forum
Helping W3Schools
|
WMLScript removeAt() Function
Complete WMLScript String Library
The removeAt() function divides a string into elements and removes a
specified element.
Syntax
| n = String.removeAt(string, index, separator) |
| Part |
Description |
| n |
The string returned from the function |
| string |
The original string |
| index |
The index of the element to be removed |
| separator |
The dividing separator |
Example
var a = String.removeAt("Visit W3Schools!",0," ");
var b = String.removeAt("Visit W3Schools!",0,"W");
var c = String.removeAt("Visit W3Schools!",-2," ");
var d = String.removeAt("Visit W3Schools!",10," ");
|
Result
a = "W3Schools!"
b = "3Schools!"
c = "W3Schools!"
d = "Visit"
|
Complete WMLScript String Library
 |
|
Get Your Diploma!
W3Schools' Online Certification Program is the perfect solution for busy
professionals who need to balance work, family, and career building.
The HTML Certificate is for developers who want to document their knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate is for developers who want to document their knowledge of JavaScript and the HTML DOM.
The ASP Certificate is for developers who want to document their knowledge of ASP, SQL, and ADO.
|
|
|
Jump to: Top of Page
or HOME or
Printer friendly page
W3Schools provides material for training only. We do not warrant the correctness of its contents.
The risk from using it lies entirely with the user.
While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2008 by Refsnes Data. All Rights Reserved.
|
|
|