.NET
.NET (0) ASP (238) ASP.NET (388)
C# (35) VB.NET (49) Visual Studio (0)
Java
EJB (0) Java (1096) Java Desktop (0)
JSP (172)
Software Development
Android (0) C++ (98)
Database (0) Delphi (31) Facebook (0)
iPhone - iPad (0) Oracle (61) Project Mgt (0)
SQL Server (0) UML (0) Visual Basic (397)
Web Development
AJAX (4) Flex (0) HTML (8)
JavaScript (216) PHP (463) SEO (0)
Web Design (0) Web Hosting (0) XML (16)
 
Spring InJ2EE
This peice of code will direct you how spring works in basic.... read more
Author: Ashish Dave Reviews:0 Date:16th Jun, 2008 Rating:No Rating Accessed:8493

 
Wraps a string to a given number of characters using a string break character InStrings
Returns a string with str wrapped at the column number specified by the optional width parameter. The line is broken using the (optional) break parameter. wordwrap() will automatically wrap at column 75 and break using 'n' (newline) if width or break are not given. If the cut is set to 1, the string is always wrapped at the specified width. So if you have a word that is larger than the given width, it is broken apart. (See second example).... read more
Author: goldeekhan Reviews:0 Date:3rd Apr, 2008 Rating:No Rating Accessed:6068

 
Uppercase the first character of each word in a string InStrings
Returns a string with the first character of each word in str capitalized, if that character is alphabetic. The definition of a word is any string of characters that is immediately after a whitespace (These are: space, form-feed, newline, carriage return, horizontal tab, and vertical tab).... read more
Author: goldeekhan Reviews:0 Date:3rd Apr, 2008 Rating:No Rating Accessed:6686

 
Make a string's first character uppercase InStrings
Returns a string with the first character of str capitalized, if that character is alphabetic. Note that 'alphabetic' is determined by the current locale. For instance, in the default "C" locale characters such as umlaut-a (ä) will not be converted.... read more
Author: goldeekhan Reviews:0 Date:3rd Apr, 2008 Rating:No Rating Accessed:7405

 
Strip whitespace (or other characters) from the beginning and end of a string InStrings
This function returns a string with whitespace stripped from the beginning and end of str. Without the second parameter, trim() will strip these characters: " " (ASCII 32 (0x20)), an ordinary space. "t" (ASCII 9 (0x09)), a tab. "n" (ASCII 10 (0x0A)), a new line (line feed). "r" (ASCII 13 (0x0D)), a carriage return. "" (ASCII 0 (0x00)), the NUL-byte. "x0B" (ASCII 11 (0x0B)), a vertical tab.... read more
Author: goldeekhan Reviews:0 Date:3rd Apr, 2008 Rating:No Rating Accessed:5718

 
Return part of a string InStrings
Returns the portion of string specified by the start and length parameters. If start is non-negative, the returned string will start at the start'th position in string, counting from zero. For instance, in the string 'abcdef', the character at position 0 is 'a', the character at position 2 is 'c', and so forth.... read more
Author: goldeekhan Reviews:0 Date:3rd Apr, 2008 Rating:No Rating Accessed:4365

 
Replace text within a portion of a string InStrings
Replaces a copy of string delimited by the start and (optionally) length parameters with the string given in replacement. The result string is returned. If string is an array then array is returned. If start is positive, the replacing will begin at the start'th offset into string. If start is negative, the replacing will begin at the start'th character from the end of string. If length is given and is positive, it represents the length of the portion of string which is to be replaced. If it is negative, it represents the number of characters from the end of string at which to stop replacing. If it is not given, then it will default to strlen( string ); i.e. end the replacing at the end of string.... read more
Author: goldeekhan Reviews:0 Date:3rd Apr, 2008 Rating:No Rating Accessed:3859

 
Count the number of substring occurrences InStrings
Returns the number of times the needle substring occurs in the haystack string. Please note that needle is case sensitive. Note: This function doesn't count overlapped substrings. See the example below!... read more
Author: goldeekhan Reviews:0 Date:3rd Apr, 2008 Rating:No Rating Accessed:4065

 
Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters InStrings
Returns < 0 if main_str from position offset is less than str, > 0 if it is greater than str, and 0 if they are equal. If length is equal or greater than length of main_str and length is set, substr_compare() prints warning and returns FALSE. If case_insensitivity is TRUE, comparison is case insensitive.... read more
Author: goldeekhan Reviews:0 Date:3rd Apr, 2008 Rating:No Rating Accessed:3536

 
Translate certain characters InStrings
This function returns a copy of str, translating all occurrences of each character in from to the corresponding character in to. If from and to are different lengths, the extra characters in the longer of the two are ignored.... read more
Author: goldeekhan Reviews:0 Date:3rd Apr, 2008 Rating:No Rating Accessed:3170

 
1 - 10 of 3280 First | Previous | Next | Last  

Copyright © 2013 VisualBuilder. All rights reserved