Whether a string is the prefix or suffix of another string. : String Compare « Data Type « VB.Net Tutorial






Imports System
Imports System.Globalization

Public Class SamplesCompareInfo

   Public Shared Sub Main()
      Dim myStr1 As [String] = "this"
      Dim myStr2 As [String] = "is"
      Dim myXfix As [String] = "th"

      ' Uses the CompareInfo property of the InvariantCulture.
      Dim myComp As CompareInfo = CultureInfo.InvariantCulture.CompareInfo

      ' Determines whether myXfix is a prefix of "calle" and "llegar".
      Console.WriteLine("IsPrefix( {0}, {1} ) : {2}", myStr1, myXfix, myComp.IsPrefix(myStr1, myXfix))
      Console.WriteLine("IsPrefix( {0}, {1} ) : {2}", myStr2, myXfix, myComp.IsPrefix(myStr2, myXfix))

      ' Determines whether myXfix is a suffix of "calle" and "llegar".
      Console.WriteLine("IsSuffix( {0}, {1} ) : {2}", myStr1, myXfix, myComp.IsSuffix(myStr1, myXfix))
      Console.WriteLine("IsSuffix( {0}, {1} ) : {2}", myStr2, myXfix, myComp.IsSuffix(myStr2, myXfix))

   End Sub

End Class








2.31.String Compare
2.31.1.Comparing strings: Equals, =, String.Equals() and CompareTo
2.31.2.String Equals with overloaded operator, member method and static member method
2.31.3.String Compare with case sensitive and insensitive
2.31.4.Compare String value in If statement
2.31.5.Whether a string is the prefix or suffix of another string.
2.31.6.Use the CompareTo method with another String.
2.31.7.Use String.Compare to check if a URI is a file URI
2.31.8.Compare two strings using different CompareOptions settings.