Sunday, August 28, 2011

String Manipulation


1. StrComp Method
 
Returns -1, 0, or 1, based on the result of a string comparison. 

Syntax:

Public Shared Function StrComp ( _
    String1 As String, _
    String2 As String, _
    Compare As CompareMethod _
) As Integer


Parameters:
String1
    Type: System.String
    Required. Any valid String expression.

String2
    Type: System.String
    Required. Any valid String expression.

Compare
    Type: Microsoft.VisualBasic.CompareMethod
    Optional. Specifies the type of string comparison. If Compare is omitted, the Option Compare

setting determines the type of comparison.


Return Value

Type: System.Int32
The StrComp function has the following return values.

If   
StrComp returns
String1 sorts ahead of String2 (-1)
String1 is equal to String2 (0)
String1 sorts after String2 (1)
   
Exception:

ArgumentException is the exception thrown by this function.(Condition: Compare value is not valid.)
______________________________________________________________________

2. StrConv Method

Returns a string converted as specified

Syntax:
Public Shared Function StrConv ( _
    str As String, _
    Conversion As VbStrConv, _
    LocaleID As Integer _
) As String


Parameters:

str
    Type: System.String
    Required. String expression to be converted.

Conversion
    Type: Microsoft.VisualBasic.VbStrConv
    Required. VbStrConv member. The enumeration value specifying the type of conversion to

perform.

LocaleID
    Type: System.Int32
    Optional. The LocaleID value, if different from the system LocaleID value. (The system

LocaleID value is the default.)

Return Value:
Type: System.String
Returns a string converted as specified.
Exceptions
Exception     Condition

Exception:
ArgumentException is the exception thrown by this function.(Condition: Unsupported LocaleID, Conversion < 0 or > 2048, or unsupported conversion for specified locale.)
_____________________________________________________________________


3. InStrRev Method
 
Returns the position of the first occurrence of one string within another, starting from the right side of the string.


Syntax:
Public Shared Function InStrRev ( _
    StringCheck As String, _
    StringMatch As String, _
    Start As Integer, _
    Compare As CompareMethod _
) As Integer


Parameters:
StringCheck
    Type: System.String
    Required. String expression being searched.

StringMatch
    Type: System.String
    Required. String expression being searched for.

Start
    Type: System.Int32
    Optional. Numeric expression setting the one-based starting position for each search, starting from the left side of the string. If Start is omitted then –1 is used, meaning the search begins at the last character position. Search then proceeds from right to left.

Compare
    Type: Microsoft.VisualBasic.CompareMethod
    Optional. Numeric value indicating the kind of comparison to use when evaluating substrings.

If omitted, a binary comparison is performed. See Settings for values.

Return Value
Type: System.Int32
If   
InStrRev returns
StringCheck is zero-length (0)
StringMatch is zero-length (Start)
StringMatch is not found (0)
StringMatch is found within StringCheck (Position at which the first match is found, starting with the right side of the string.)
Start is greater than length of StringMatch (0)

Exception:
ArgumentException is the exception thrown by this function. (Condition: Start = 0 or Start < -1.)

_______________________________________________________________________


4. StrReverse Method
Returns a string in which the character order of a specified string is reversed.
Syntax:
Public Shared Function StrReverse ( _
    Expression As String _
) As String


Parameters:
Expression
    Type: System.String
    Required. String expression whose characters are to be reversed. If Expression is a zero-

length string (""), a zero-length string is returned.

Return Value:
Type: System.String
Returns a string in which the character order of a specified string is reversed.


Exception:
ArgumentException is the exception thrown by this function.


_________________________________________________________________


5. Space Method

Returns a string consisting of the specified number of spaces.


Syntax:
Public Shared Function Space ( _
    Number As Integer _
) As String


Parameters:
Number
    Type: System.Int32
    Required. Integer expression. The number of spaces you want in the string.

Return Value:

Type: System.String
Returns a string consisting of the specified number of spaces.

Exception:
ArgumentException is the exception thrown by this function. (Condition: Number < 0.)

_____________________________________________________________________



6. StrDup Method (int32,Char)

Returns a string or object consisting of the specified character repeated the specified number of times.


syntax:


Public Shared Function StrDup ( _
    Number As Integer, _
    Character As Char _
) As String


Overload List of StrDup Method (int32,Char)
* StrDup(Int32, Char)     Returns a string or object consisting of the specified character repeated the specified number of times.

Parameters:

Number
    Type: System.Int32
    Required. Integer expression. The length to the string to be returned.

Character
    Type: System.Char
    Required. Any valid Char, String, or Object expression. Only the first character of the

expression will be used. If Character is of type Object, it must contain either a Char or a

String value.

Return Value:
Type: System.String
Returns a string or object consisting of the specified character repeated the specified number of times.


Exceptions:
*ArgumentException (Condition: Number is less than 0 or Character type is not valid.)
*ArgumentNullException (Condition: Character is Nothing.)





Sunday, August 21, 2011

Blog Tasks: Exceptions

4. How to: Use the Try/Catch Block to Catch Exceptions
What is a Try/Catch block?

Place the sections of code that might throw exceptions in a try block and place code that handles exceptions in a catch block. The catch block is a series of statements beginning with the keyword catch, followed by an exception type and an action to be taken.
The try-catch statement consists of a try block followed by one or more catch clauses, which specify handlers for different exceptions. When an exception is thrown, the common language runtime (CLR) looks for the catch statement that handles this exception. If the currently executing method does not contain such a catch block, the CLR looks at the method that called the current method, and so on up the call stack. If no catch block is found, then the CLR displays an unhandled exception message to the user and stops execution of the program.

Blog Tasks: Exceptions

3. Exception Hierarchy
What are the names of the 2 exception type categories?*The pre-defined common language runtime exception classes derived from SystemException.
*The user-defined application exception classes derived from ApplicationException..

When is a IndexOutOfRangeException thrown?
Thrown by the runtime only when an array is indexed improperly.

Blog Tasks: Exceptions

2. The Exception class.
What is the purpose of the class?
To slove ArithmeticException errors and DivideByZeroException errors.

What class does it directly inherit from?
exception classes inherit directly from exception

How many constructors are available for this class?
Four

Blog Tasks: Exceptions

1. Exceptions
What is an exception?
Exception represents errors that occur during application execution. Exceptions can be thrown for several reasons, such as dividing a number by a zero and numeric overflow.

Sunday, August 14, 2011

3. Research the Len, InStr & Mid functions.


Len Function


Returns the number of characters of the specified string expression, excluding trailing blanks
Syntax    LEN ( string_expression )
               
Arguments
string_expression 
string_expression can be a constant, variable, or column of either character or binary data

Return Types
bigint if expression is of the varchar(max), nvarchar(max) or varbinary(max) data types; otherwise, int.

5. HashTable

* Include a link to the HastTable documentation at MSDN

http://msdn.microsoft.com/en-us/library/system.collections.hashtable.aspx

5. HashTable


    * What is a HashTable?
A Hashtable is used in Java to create a hash structure - that is, a structure with key-value pairs. To create a HashTable, one calls the constructor:
HashTable ht = new HashTable();

    * What is a key/value pair?
A key-value pair (KVP) is a set of two linked data items: a key, which is a unique identifier for some item of data, and the value, which is either the data that is identified or a pointer to the location of that data. Key-value pairs are frequently used in lookup tables, hash tables and configuration files.

4. Sequence Diagrams


What is a Sequence diagram & what does it communicate?
UML sequence diagrams are used to represent or model the flow of messages, events and actions between the objects or components of a system. Time is represented in the vertical direction showing the sequence of interactions of the header elements, which are displayed horizontally at the top of the diagram.
Sequence Diagrams are used primarily to design, document and validate the architecture, interfaces and logic of the system by describing the sequence of actions that need to be performed to complete a task or scenario. UML sequence diagrams are useful design tools because they provide a dynamic view of the system behavior which can be difficult to extract from static diagrams or specifications.

Although UML sequence diagrams are typically used to describe object-oriented software systems, they are also extremely useful as system engineering tools to design system architectures, in business process engineering as process flow diagrams, as message sequence charts and call flows for telecom/wireless system design, and for protocol stack design and analysis.

Include 1 link to a useful page about Sequence Diagrams
http://sourceforge.net/projects/staruml/forums

Include the link to download StarUML
http://staruml.sourceforge.net/en/download.php