Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 2 of 2) 43 Result(s) found 

 

IsStringUpper - Determine whether a string contains only uppercase characters
Total Hit (1685) «Code LangId=2»' Returns True if a string contains only uppercase characters Function IsStringUpper(ByVal sText As String) As Boolean Dim c As Char For Each c In sText If Not Char.IsUpper(c) Then Return False Next Return True End Function «/Code» ....Read More
Rating
PluralToSingular - Converting the input word from plural to singular
Total Hit (2302) «Code LangId=2»' Convert the input word from plural to singular Function PluralToSingular(ByVal plural As String) As String ' convert to lowercase for easier comparison Dim lower As String = plural.ToLower() Dim res As String ' rule out a few exceptions If lower = "feet" ....Read More
Rating
ReplaceAccentedChars - Replacing all accented characters in the input string
Total Hit (2613) «Code LangId=2» ' Replace all accented characters in the input string ' Note: this function was written according to Italian rules. Rules for your ' language may vary, for example È may not be converted to "E'" as it is in ' Italian ' ' Example: ' Debug.WriteLine(ReplaceAccentedChars("È ....Read More
Rating
ReplicateString - Replicate a string a given number of times
Total Hit (2550) «Code LangId=2»' Replicate a string a given number of times Function ReplicateString(ByVal Source As String, ByVal Times As Integer) As _ String Dim i As Integer Dim sb As New Text.StringBuilder(Source.Length * Times) For i = 1 To Times sb.Append(Source) Next ....Read More
Rating
ReverseString - Reversing a String
Total Hit (1625) «Code LangId=2» ' Reverse the input string, without using the StrRever function in the VB6 ' compatibility assembly Function ReverseString(ByVal source As String) As String Dim chars() As Char = source.ToCharArray() Array.Reverse(chars) Return New String(chars) End Function « ....Read More
Rating
SearchString - Searching a string in case [in]sensitive mode
Total Hit (2311) «Code LangId=2» ' Search the specified string, with the case-sensitive mode or not ' Returns the index of the first occurrence found, or -1 if not found Public Function SearchString(ByVal source As String, ByVal search As String, _ Optional ByVal ignoreCase As Boolean = False) As Integer ....Read More
Rating
SingularToPlural - Converting the input word from singular to plural
Total Hit (2463) «Code LangId=2»' Convert the input word from singular to plural Function SingularToPlural(ByVal singular As String) As String ' convert to lowercase for easier comparison Dim lower As String = singular.ToLower() Dim res As String ' rule out a few exceptions If lower = "f ....Read More
Rating
SplitQuoted - A split variant that deals correctly with quoted elements
Total Hit (1906) «Code LangId=2»' split a string, dealing correctly with quoted items ' ' TEXT is the string to be split ' SEPARATOR is the separator char (default is comma) ' QUOTES is the character used to quote strings (default is """", ' the double quote) ' you can also use a character pair (eg "{}") ....Read More
Rating
StartsWith - Check whether a string starts with one of multiple possible choices
Total Hit (1793) «Code LangId=2»' Check whether a string starts with one of multiple possible choices. ' Return -1 if no possible string matches the start of the source, ' otherwise return the index of the matching string. ' ' Examples: ' Debug.WriteLine(StartsWith("This is my test line", True, "this", ' ....Read More
Rating
StripControlChars - Delete control characters in a string
Total Hit (4279) «Code LangId=2» ' Strip all control characters (ASCII code < 32) ' ' If the second argument is True or omitted, ' CR-LF pairs are preserved Function StripControlChars(ByVal source As String, Optional ByVal KeepCRLF As _ Boolean = True) As String ' we use this to build the result ....Read More
Rating
String operation in vb.net
Total Hit (1895) The following example uses some of the methods discussed in the Basic String Operations topics to construct a class that performs string manipulations in a manner that might be found in a real-world application. The MailToData class stores the name and address of an individual in separate properties ....Read More
Rating
GetUSStates - Get the list of US States and their abbreviations
Total Hit (3145)
Rating
Case insensitive replace in .net
Total Hit (12040) Sounds easy right.... but sometimes it can take your entire day how to do that using String Replace method. By default .Net string operations are case sensetive. In order to do case insensitive you need to use Strings.Replace method this is another replace method provided for VB programmers. «co ....Read More
Rating


(Page 2 of 2) 43 Result(s) found  1 2

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.