Tell a friend
Link to us
Bookmark Us
Total Members
      Members: 84658
Sitemap Forum Chat
 
GROUPS
.NET
ASP.NET
.NET
C#
ASP
Visual Basic
Java
Java
JSP
EJB
Other
Delphi
C++
Ajax
UML
JavaScript
PHP
Web Design
Web Hosting
SQL Server
Oracle
Project Management
More Groups

 
LEARNING CENTER
TUTORIALS
.NET
.NET Tutorial
ASP Tutorial
ASP.NET Database Tutorial
ASP.Net Security,Internationalisation And Deployment
ASP.NET Tutorial
C# Tutorial
Web Development
Flex Tutorial
HTML Tutorial
Learn AJAX Tutorial
PHP Tutorial
Software Development
Database Tutorial
SQL Tutorial
UML Tutorial
Java
Ant Tutorial
EJB 3 Tutorial
Hibernate Tutorial
Java Tutorial
Java Web Component Tutorial
Java XML Tutorial
JDBC Tutorial
JDK1.5 Tutorial
JSF Tutorial
JSP And J2EE Design Tutorial
JSP Tutorial
Spring Tutorial
Struts Tutorial

RESOURCES
Q & A (451 )
Source Code (3275 )
Articles (359 )
Books (372 )
Components (1596 )
News (892 )
Websites (1207 )

SUBMISSIONS
Submit Article
Submit Website
Submit News
Submit Source Code
Submit Component

COMMUNITY
Authors
Members Directory
Discussion Forum
Chat

SITE
About Us
Sitemap
Search
Contact Us
Link To Us
Feedback
Tell a Friend
Partners
Advertise

 

Home > Source Code
 

Source Code


.NET
.NET (0) ASP (238) ASP.NET (388)
C# (35) VB.NET (49) Visual Studio (0)
Java
EJB (0) Java (1095) Java Desktop (0)
JSP (172)
Software Development
C++ (98) Database (0)
Delphi (31) 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)
 
Wraps a string to a given number of characters using a string break character In Strings
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: 172

 
Uppercase the first character of each word in a string In Strings
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: 252

 
Make a string's first character uppercase In Strings
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: 283

 
Strip whitespace (or other characters) from the beginning and end of a string In Strings
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: 232

 
Return part of a string In Strings
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: 137

 
Replace text within a portion of a string In Strings
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: 89

 
Count the number of substring occurrences In Strings
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: 82

 
Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters In Strings
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: 47

 
Translate certain characters In Strings
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: 56

 
Make a string uppercase In Strings
Returns string with all alphabetic characters converted to uppercase. 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: 75

 
1-10 of 3279 First | Previous | Next | Last  
Welcome Guest Signup
Member's Panel
EMAIL
PASSWORD
Forgot your password?
New User? Click Here!
 
Resend Activation Email!

SEARCH
 

 
 
Partner List
Code Project
ASP Alliance
More
 
 
 
 


Home | Login | About Us | Contact Us | Privacy Policy | Advertising | Feedback Please