String.ToUpperCase Example: JavaScript Syntax – JS String.ToUpperCase Sample Example

String.ToUpperCase Example: JavaScript Syntax – JS String.ToUpperCase Sample Example Purpose: – Illustrates the JavaScript syntax for the String ToUpperCase . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.toUpperCase() – Converts a string to Uppercase letters. Restrictions: None Notes: You can build your own library of syntax examples by using same web site over and... [Read More...]

String.ToLowerCase Example: JavaScript Syntax – JS String.ToLowerCase Sample Example

String.ToLowerCase Example: JavaScript Syntax – JS String.ToLowerCase Sample Example Purpose: – Illustrates the JavaScript syntax for the String ToLowerCase . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.toLowerCase() – Converts a string to lowercase letters. Restrictions: None Notes: You can build your own library of syntax examples by using same web site over and... [Read More...]

String.Substring Example: JavaScript Syntax – JS String.Substring Sample Example

String.Substring Example: JavaScript Syntax – JS String.Substring Sample Example Purpose: – Illustrates the JavaScript syntax for the String Substring . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.substring(fromIndex,ToIndex) – Extracts the characters from a string, between two specified indices. – toIndex is optional and is not included in the returned string Restrictions:... [Read More...]

String.Slice Example: JavaScript Syntax – JS String.Slice Sample Example

String.Slice Example: JavaScript Syntax – JS String.Slice Sample Example Purpose: – Illustrates the JavaScript syntax for the String Slice . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.slice(beginIndex,endIndex) – Extracts a part of a string and returns a “slice” of the original string – endIndex is optional. Restrictions: None Notes: You can build... [Read More...]

String.Search Example: JavaScript Syntax – JS String.Search Sample Example

String.Search Example: JavaScript Syntax – JS String.Search Sample Example Purpose: – Illustrates the JavaScript syntax for the String Search . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.search(“regexp or string”) – Searches for a match between a regular expression and a string, and returns the position of the match. Restrictions: None Notes: You can... [Read More...]

String.Replace Example: JavaScript Syntax – JS String.Replace Sample Example

String.Replace Example: JavaScript Syntax – JS String.Replace Sample Example Purpose: – Illustrates the JavaScript syntax for the String Replace . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.Replace(“regexp or oldstring”, “newstring”) – Searches for a match between a substring (or regular expression) and a string, and replaces the matched substring... [Read More...]

String.Match Example: JavaScript Syntax – JS String.Match Example

String.Match Example: JavaScript Syntax – JS String.Match Example Purpose: – Illustrates the JavaScript syntax for the String Match . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.match(pattern) – Searches for a match between a regular expression and a string, and returns the matches. Pattern is what you are trying to find in the string. Restrictions: None Notes: You... [Read More...]

String.LastIndexOf Example: JavaScript Syntax – JS String.LastIndexOf Example

String.LastIndexOf Example: JavaScript Syntax – JS String.LastIndexOf Example Purpose: – Illustrates the JavaScript syntax for the String LastIndexOf . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.lastIndexOf(searchstring, start) – Returns the position of the last found occurrence of a specified value in a string – start is optional. Restrictions: None Notes:... [Read More...]

String.IndexOf Example: JavaScript Syntax – JS String.IndexOf Example

String.IndexOf Example: JavaScript Syntax – JS String.IndexOf Example Purpose: – Illustrates the JavaScript syntax for the String IndexOf . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.indexOf(searchstring, start) – Returns the position of the first found occurrence of a specified value in a string – start is optional. Restrictions: None Notes: You can build... [Read More...]

String.FromCharCode Example: JavaScript Syntax – JS String.FromCharCode Example

String.FromCharCode Example: JavaScript Syntax – JS String.FromCharCode Example Purpose: – Illustrates the JavaScript syntax for the String FromCharCode . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: String.fromCharCode(n1, n2, …, nX) – This is a static method. The syntax is String.fromCharCode() and not str.fromCharCode Restrictions: None Notes: You can build your... [Read More...]

String.Concat Example: JavaScript Syntax – JS String.Concat Example

String.Concat Example: JavaScript Syntax – JS String.Concat Example Purpose: – Illustrates the JavaScript syntax for the String Concat . View Other String Properties and Methods Prerequistes: Install Visual Web Developer 2008 Syntax: string.concat(string2, string3, …, stringX) – Joins two or more strings, and returns a copy of the joined strings. Restrictions: None Notes: You can build your own library of syntax examples... [Read More...]

Next Page »