{"id":65425,"date":"2022-06-25T07:17:08","date_gmt":"2022-06-25T07:17:08","guid":{"rendered":"https:\/\/itsourcecode.com\/?p=65425"},"modified":"2023-11-21T05:51:17","modified_gmt":"2023-11-21T05:51:17","slug":"string-in-vb-net","status":"publish","type":"post","link":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/","title":{"rendered":"String in VB.net &#8211; String Function in VB.net with Example"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-what-is-string-in-vb-net\"><strong>What is String in VB.net?<\/strong><\/h2>\n\n\n\n<p>The <strong>String in VB.net<\/strong> is a sequence of characters collectively referred to as a <strong>string<\/strong>. <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>The text value is saved in a <strong>string variable<\/strong> that is created using the <strong>String keyword<\/strong>. <strong>System.String<\/strong> is the name of the <strong>string class<\/strong>, which includes all of the <strong>string&#8217;s functions<\/strong>.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>In <strong>VB.net<\/strong>, you can use <strong>strings as an array<\/strong> of characters, however, the more common practice is to use the <strong>String keyword<\/strong> to declare a <strong>string variable<\/strong>.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-declaration-and-initialization-of-string-in-vb-net\"><strong>Declaration and Initialization of String in VB.net<\/strong><\/h2>\n\n\n\n<p>The following are the different ways to <strong>Declare and Initialize<\/strong> the <strong>String Variable<\/strong> using the <strong>String Keyword in VB.net<\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>'Declaration of the String variable  \nDim str As String  \nDim abc As String  \n  \n' Initialization of String variable  \nDim str As String = \"Welcome to IT SOURCECODE.\"  \nDim str1 As String = \"Hello World!\"  \n  \n' Initialize a null string  \nDim str2 As String = Nothing  \n  \n' Initialization of an empty string  \nDim name As String = String.Empty   \n  \n' Creating a String from char  \nDim letter As Char() = {\"H\", \"E\",  \"L\", \"L\", \"O\" }  <\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p>In the above declaration of string, we have defined the string variable with the string keyword and initialized the <strong>string variable<\/strong> with value based on our requirements.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-creating-a-string-object-in-vb-net\"><strong>Creating A String Object in VB.net<\/strong><\/h2>\n\n\n\n<p>You can create a <strong>String Object in VB.net<\/strong> using one of the following methods:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By assigning a string literal to a String variable<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By using a String class constructor<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By using the string concatenation operator (+)<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By retrieving a property or calling a method that returns a string<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By calling a formatting method to convert a value or object to its string representation<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n\n\n\n<p>Let&#8217;s create an example to demonstrate the uses of <strong>String objects in VB.net<\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Module strings\n   Sub Main()\n      Dim fname, lname, fullname, greetings As String\n      fname = \"Angel Jude\"\n      lname = \"Suarez\"\n      fullname = fname + \" \" + lname\n      Console.WriteLine(\"Full Name: {0}\", fullname)\n\n      'by using string constructor\n      Dim letters As Char() = {\"H\", \"e\", \"l\", \"l\", \"o\"}\n      greetings = New String(letters)\n      Console.WriteLine(\"Greetings: {0}\", greetings)\n\n      'methods returning String\n      Dim sarray() As String = {\"Hello\", \"From\", \"IT\", \"SOURCECODE\"}\n      Dim message As String = String.Join(\" \", sarray)\n      Console.WriteLine(\"Message: {0}\", message)\n\n      'formatting method to convert a value \n      Dim waiting As DateTime = New DateTime(2022, 06, 25, 12, 00, 1)\n      Dim chat As String = String.Format(\"Message sent at {0:t} on {0:D}\", waiting)\n      Console.WriteLine(\"Message: {0}\", chat)\n      Console.ReadLine()\n   End Sub\nEnd Module<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p>When the above code is compiled and executed, it produces the following result:<\/p>\n\n\n\n<p class=\"has-base-3-color has-contrast-background-color has-text-color has-background\">Full Name: Angel Jude Suarez<br>Greetings: Hello<br>Message: Hello From IT SOURCECODE<br>Message: Message sent at 12:00 PM on Saturday, June 25, 2022<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>You can test the above example here! \u27a1&nbsp;<a href=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/vb-net-online-compiler-and-ide\/\">VB.net Online Compiler<\/a><\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-immutable-string-object-in-vb-net\"><strong>Immutable String Object in VB.net<\/strong><\/h2>\n\n\n\n<p>The <strong>String Object In VB.net<\/strong> is <strong>immutable<\/strong>. It means that once we have created a <strong>string object<\/strong>, it cannot be modified during its execution. <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>If we modify an existing value in a string object through addition and subtraction, it discards the old value of an instance in memory and creates a new instance to hold a new value. <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>Furthermore, if we want to perform any operation in the <strong>String object<\/strong>, we must define an object every time to create a new <strong>String object<\/strong>.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>So, in that case, the string provides the <strong>System.Text.StringBuilder<\/strong> class to modify a string without creating a new object.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-properties-of-the-string-class-in-vb-net\"><strong>Properties of the String Class in VB.net<\/strong><\/h2>\n\n\n\n<p>The <strong>String Class in VB.net<\/strong> has the following two properties:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-1-chars\"><strong>1. Chars<\/strong><\/h3>\n\n\n\n<p>Gets the&nbsp;<em><strong>Char<\/strong><\/em>&nbsp;object at a specified position in the current&nbsp;<em><strong>String<\/strong><\/em>&nbsp;object.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-2-length\"><strong>2. Length<\/strong><\/h3>\n\n\n\n<p>Gets the number of characters in the current String object<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-methods-of-the-string-class-in-vb-net\"><strong><strong>Methods of the String Class in VB.net<\/strong><\/strong><\/h2>\n\n\n\n<p>The String class has numerous methods that help you in working with the <strong>String Objects in <strong><strong><a href=\"https:\/\/docs.microsoft.com\/en-us\/dotnet\/visual-basic\/\">VB.net<\/a><\/strong><\/strong><\/strong>. <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>The following table provides some of the most commonly used methods:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>#<\/th><th><strong>Methods of the String Class in VB.net<\/strong> : <strong>Method Name &amp; Description<\/strong><\/th><\/tr><tr><td>1.<\/td><td><strong>Public Shared Function Compare ( strA As String, strB As String ) As Integer<\/strong><br>Compares two specified string objects and returns an integer that indicates their relative position in the sort order.<\/td><\/tr><tr><td>2.<\/td><td><strong>Public Shared Function Compare ( strA As String, strB As String, ignoreCase As Boolean ) As Integer<\/strong><br>Compares two specified string objects and returns an integer that indicates their relative position in the sort order. However, it ignores case if the Boolean parameter is true.<\/td><\/tr><tr><td>3.<\/td><td><strong>Public Shared Function Concat ( str0 As String, str1 As String ) As String<\/strong><br>Concatenates two string objects.<\/td><\/tr><tr><td>4.<\/td><td><strong>Public Shared Function Concat ( str0 As String, str1 As String, str2 As String ) As String<\/strong><br>Concatenates three string objects.<\/td><\/tr><tr><td>5.<\/td><td><strong>Public Shared Function Concat (str0 As String, str1 As String, str2 As String, str3 As String ) As String<\/strong><br>Concatenates four string objects.<\/td><\/tr><tr><td>6.<\/td><td><strong>Public Function Contains ( value As String ) As Boolean<\/strong><br>Returns a value indicating whether the specified string object occurs within this string.<\/td><\/tr><tr><td>7.<\/td><td><strong>Public Shared Function Copy ( str As String ) As String<\/strong><br>Creates a new String object with the same value as the specified string.<\/td><\/tr><tr><td>8.<\/td><td><strong>pPublic Sub CopyTo ( sourceIndex As Integer, destination As Char(), destinationIndex As Integer, count As Integer )<\/strong><br>Copies a specified number of characters from a specified position of the string object to a specified position in an array of Unicode characters.<\/td><\/tr><tr><td>9.<\/td><td><strong>Public Function EndsWith ( value As String ) As Boolean<\/strong><br>Determines whether the end of the string object matches the specified string.<\/td><\/tr><tr><td>10.<\/td><td><strong>Public Function Equals ( value As String ) As Boolean<\/strong><br>Determines whether the current string object and the specified string object have the same value.<\/td><\/tr><tr><td>11.<\/td><td><strong>Public Shared Function Equals ( a As String, b As String ) As Boolean<\/strong><br>Determines whether two specified string objects have the same value.<\/td><\/tr><tr><td>12.<\/td><td><strong>Public Shared Function Format ( format As String, arg0 As Object ) As String<\/strong><br>Replaces one or more format items in a specified string with the string representation of a specified object.<\/td><\/tr><tr><td>13.<\/td><td><strong>Public Function IndexOf ( value As Char ) As Integer<\/strong><br>Returns the zero-based index of the first occurrence of the specified Unicode character in the current string.<\/td><\/tr><tr><td>14.<\/td><td><strong>Public Function IndexOf ( value As String ) As Integer<\/strong><br>Returns the zero-based index of the first occurrence of the specified string in this instance.<\/td><\/tr><tr><td>15.<\/td><td><strong>Public Function IndexOf ( value As Char, startIndex As Integer ) As Integer<\/strong><br>Returns the zero-based index of the first occurrence of the specified Unicode character in this string, starting search at the specified character position.<\/td><\/tr><tr><td>16.<\/td><td><strong>Public Function IndexOf ( value As String, startIndex As Integer ) As Integer<\/strong><br>Returns the zero-based index of the first occurrence of the specified string in this instance, starting search at the specified character position.<\/td><\/tr><tr><td>17.<\/td><td><strong>Public Function IndexOfAny ( anyOf As Char() ) As Integer<\/strong><br>Returns the zero-based index of the first occurrence in this instance of any character in a specified array of Unicode characters.<\/td><\/tr><tr><td>18.<\/td><td><strong>Public Function IndexOfAny ( anyOf As Char(), startIndex As Integer ) As Integer<\/strong><br>Returns the zero-based index of the first occurrence in this instance of any character in a specified array of Unicode characters, starting search at the specified character position.<\/td><\/tr><tr><td>19.<\/td><td><strong>Public Function Insert ( startIndex As Integer, value As String ) As String<\/strong><br>Returns a new string in which a specified string is inserted at a specified index position in the current string object.<\/td><\/tr><tr><td>20.<\/td><td><strong>Public Shared Function IsNullOrEmpty ( value As String ) As Boolean<\/strong><br>Indicates whether the specified string is null or an Empty string.<\/td><\/tr><tr><td>21.<\/td><td><strong>Public Shared Function Join ( separator As String, ParamArray value As String() ) As String<\/strong><br>Concatenates all the elements of a string array, using the specified separator between each element.<\/td><\/tr><tr><td>22.<\/td><td><strong>Public Shared Function Join ( separator As String, value As String(), startIndex As Integer, count As Integer ) As String<\/strong><br>Concatenates the specified elements of a string array, using the specified separator between each element.<\/td><\/tr><tr><td>23.<\/td><td><strong>Public Function LastIndexOf ( value As Char ) As Integer<\/strong><br>Returns the zero-based index position of the last occurrence of the specified Unicode character within the current string object.<\/td><\/tr><tr><td>24.<\/td><td><strong>Public Function LastIndexOf ( value As String ) As Integer<\/strong><br>Returns the zero-based index position of the last occurrence of a specified string within the current string object.<\/td><\/tr><tr><td>25.<\/td><td><strong>Public Function Remove ( startIndex As Integer ) As String<\/strong><br>Removes all the characters in the current instance, beginning at a specified position and continuing through the last position, and returns the string.<\/td><\/tr><tr><td>26.<\/td><td><strong>Public Function Remove ( startIndex As Integer, count As Integer ) As String<\/strong><br>Removes the specified number of characters in the current string beginning at a specified position and returns the string.<\/td><\/tr><tr><td>27.<\/td><td><strong>Public Function Replace ( oldChar As Char, newChar As Char ) As String<\/strong><br>Replaces all occurrences of a specified Unicode character in the current string object with the specified Unicode character and returns the new string.<\/td><\/tr><tr><td>28.<\/td><td><strong>Public Function Replace ( oldValue As String, newValue As String ) As String<\/strong><br>Replaces all occurrences of a specified string in the current string object with the specified string and returns the new string.<\/td><\/tr><tr><td>29.<\/td><td><strong>Public Function Split ( ParamArray separator As Char() ) As String()<\/strong><br>Returns a string array that contains the substrings in the current string object, delimited by elements of a specified Unicode character array.<\/td><\/tr><tr><td>30.<\/td><td><strong>Public Function Split ( separator As Char(), count As Integer ) As String()<\/strong><br>Returns a string array that contains the substrings in the current string object, delimited by elements of a specified Unicode character array. The int parameter specifies the maximum number of substrings to return.<\/td><\/tr><tr><td>31.<\/td><td><strong>Public Function StartsWith ( value As String ) As Boolean<\/strong><br>Determines whether the beginning of this string instance matches the specified string.<\/td><\/tr><tr><td>32.<\/td><td><strong>Public Function ToCharArray As Char()<\/strong><br>Returns a Unicode character array with all the characters in the current string object.<\/td><\/tr><tr><td>33.<\/td><td><strong>Public Function ToCharArray ( startIndex As Integer, length As Integer ) As Char()<\/strong><br>Returns a Unicode character array with all the characters in the current string object, starting from the specified index and up to the specified length.<\/td><\/tr><tr><td>34.<\/td><td><strong>Public Function ToLower As String<\/strong><br>Returns a copy of this string converted to lowercase.<\/td><\/tr><tr><td>35.<\/td><td><strong>Public Function ToUpper As String<\/strong><br>Returns a copy of this string converted to uppercase.<\/td><\/tr><tr><td>36.<\/td><td><strong>Public Function Trim As String<\/strong><br>Removes all leading and trailing white-space characters from the current String object.<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\"><strong><em>Methods of the String Class in VB.net<\/em><\/strong><\/figcaption><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-example-programs-of-the-methods-of-the-string-class-in-vb-net\"><strong>Example Programs of the Methods of the String Class in VB.net<\/strong><\/h2>\n\n\n\n<p>The following example demonstrates some of the methods mentioned above.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-example-program-of-comparing-string-in-vb-net\"><strong>Example Program of Comparing String in VB.net<\/strong>:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>Module strings\n   Sub Main()\n      Dim str1, str2 As String\n      str1 = \"This is test\"\n      str2 = \"This is text\"\n      \n      If (String.Compare(str1, str2) = 0) Then\n         Console.WriteLine(str1 + \" and \" + str2 + \" are equal.\")\n      Else\n         Console.WriteLine(str1 + \" and \" + str2 + \" are not equal.\")\n      End If\n      Console.ReadLine()\n   End Sub\nEnd Module<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p>When the above code is compiled and executed, it produces the following result:<\/p>\n\n\n\n<p class=\"has-base-3-color has-contrast-background-color has-text-color has-background\">This is test and This is text are not equal.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>You can test the above example here! \u27a1&nbsp;<a href=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/vb-net-online-compiler-and-ide\/\">VB.net Online Compiler<\/a><\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-example-program-of-string-contain-string-in-vb-net\"><strong>Example Program of String Contain String in VB.net<\/strong>:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>Module strings\n   Sub Main()\n      Dim str1 As String\n      str1 = \"This is test\"\n      \n      If (str1.Contains(\"test\")) Then\n         Console.WriteLine(\"The sequence 'test' was found.\")\n      End If\n      Console.ReadLine()\n   End Sub\nEnd Module<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p>When the above code is compiled and executed, it produces the following result:<\/p>\n\n\n\n<p class=\"has-base-3-color has-contrast-background-color has-text-color has-background\">The sequence &#8216;test&#8217; was found.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>You can test the above example here! \u27a1&nbsp;<a href=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/vb-net-online-compiler-and-ide\/\">VB.net Online Compiler<\/a><\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-example-program-of-getting-a-substring-in-vb-net\"><strong>Example Program of Getting a Substring in VB.net<\/strong>:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>Module strings\n   Sub Main()\n      Dim str As String\n      str = \"I am a Programmer and I have no Life\"\n      Console.WriteLine(str)\n      \n      Dim substr As String = str.Substring(23)\n      Console.WriteLine(substr)\n      Console.ReadLine()\n   End Sub\nEnd Module<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p>When the above code is compiled and executed, it produces the following result:<\/p>\n\n\n\n<p class=\"has-base-3-color has-contrast-background-color has-text-color has-background\">I am a Programmer and I have no Life<br>have no Life<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>You can test the above example here! \u27a1\u00a0<a href=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/vb-net-online-compiler-and-ide\/\">VB.net Online Compiler<\/a><\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-example-program-of-joining-strings-in-vb-net\"><strong>Example Program of Joining Strings in VB.net<\/strong>:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>Module strings\n   Sub Main()\n      Dim strarray As String() = {\n         \"I am Angel Jude Suarez\",\n         \"And i am graduated of Bachelor of Science in Information Technology\",\n         \"I am a programmer\",\n         \"And I have no life\"\n      }\n      Dim str As String = String.Join(vbCrLf, strarray)\n      Console.WriteLine(str)\n      Console.ReadLine()\n   End Sub\nEnd Module<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p>When the above code is compiled and executed, it produces the following result:<\/p>\n\n\n\n<p class=\"has-base-3-color has-contrast-background-color has-text-color has-background\">I am Angel Jude Suarez<br>And i am graduated of Bachelor of Science in Information Technology<br>I am a programmer<br>And I have no life<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>You can test the above example here! \u27a1&nbsp;<a href=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/vb-net-online-compiler-and-ide\/\">VB.net Online Compiler<\/a><\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-summary\"><strong>Summary<\/strong><\/h2>\n\n\n\n<p>In this tutorial we discuss the <strong>String Function in VB.net with Example<\/strong>, <strong>Declaration, <\/strong>and<strong> Initialization of String in VB.net,<\/strong> and the <strong>Method of String Class in VB.net<\/strong>.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>In <strong>visual basic<\/strong>, <strong>String<\/strong> is a keyword and it is useful to represent a sequential collection of <strong>characters<\/strong> that is called a <strong>text<\/strong>. <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>In<strong> visual basic<\/strong>, the <strong>String keyword<\/strong> is useful to create a <strong>string variable<\/strong> to hold the text which is a sequential collection of characters.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<div class=\"wp-block-columns is-not-stacked-on-mobile tw-mb-0 tw-mt-0 tw-gutter-large tw-stretched-link is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"tw-mt-0 tw-mb-0\" style=\"font-size:22px;font-style:normal;font-weight:600\"><strong>PREVIOUS<\/strong><\/p>\n\n\n\n<div class=\"wp-block-cover tw-mt-0 tw-mb-0 is-style-tw-rounded-corners tw-stretched-link tw-hover-show-text tw-ratio-16-9\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-70 has-background-dim\"><\/span><img loading=\"lazy\" decoding=\"async\" width=\"1460\" height=\"900\" class=\"wp-block-cover__image-background wp-image-65154\" alt=\"Loops Tutorial in VB NET\" src=\"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Loops-Tutorial-in-VB-NET.png\" style=\"object-position:50% 50%\" data-object-fit=\"cover\" data-object-position=\"50% 50%\" srcset=\"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Loops-Tutorial-in-VB-NET.png 1460w, https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Loops-Tutorial-in-VB-NET-300x185.png 300w, https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Loops-Tutorial-in-VB-NET-1024x631.png 1024w, https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Loops-Tutorial-in-VB-NET-768x473.png 768w\" sizes=\"auto, (max-width: 1460px) 100vw, 1460px\" \/><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<p class=\"has-text-align-center tw-mt-0 tw-mb-0 has-base-3-color has-text-color\" style=\"font-size:30px\"><strong><a href=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/vb-net-operators-how-many-types-of-operators-used-in-vb-net\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-base-3-color\">Loops<\/mark><\/a><\/strong><\/p>\n<\/div><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"has-text-align-right tw-mt-0 tw-mb-0\" style=\"font-size:22px;font-style:normal;font-weight:600\"><strong>NEXT <\/strong><\/p>\n\n\n\n<div class=\"wp-block-cover tw-mt-0 tw-mb-0 is-style-tw-rounded-corners tw-stretched-link tw-hover-show-text tw-ratio-16-9\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-70 has-background-dim\"><\/span><img loading=\"lazy\" decoding=\"async\" width=\"1460\" height=\"900\" class=\"wp-block-cover__image-background wp-image-65532\" alt=\"\" src=\"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Date-and-Time-in-VB-NET.png\" data-object-fit=\"cover\" srcset=\"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Date-and-Time-in-VB-NET.png 1460w, https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Date-and-Time-in-VB-NET-300x185.png 300w, https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Date-and-Time-in-VB-NET-1024x631.png 1024w, https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Date-and-Time-in-VB-NET-768x473.png 768w\" sizes=\"auto, (max-width: 1460px) 100vw, 1460px\" \/><div class=\"wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow\">\n<p class=\"has-text-align-center tw-mt-0 tw-mb-0 has-base-3-color has-text-color\" style=\"font-size:30px\"><strong><a href=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/date-time-in-vb-net-how-to-display-running-date-and-time-in-vb-net\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-base-3-color\">Date and Time<\/mark><\/a><\/strong><\/p>\n<\/div><\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>What is String in VB.net? The String in VB.net is a sequence of characters collectively referred to as a string. The text value is saved in a string variable that &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"String in VB.net &#8211; String Function in VB.net with Example\" class=\"read-more button\" href=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/#more-65425\" aria-label=\"Read more about String in VB.net &#8211; String Function in VB.net with Example\">Read more<\/a><\/p>\n","protected":false},"author":1767,"featured_media":65334,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[28],"tags":[82213,82209,82207,82214,82210,82208,82211,82206,82215,82205,82212,82216],"class_list":["post-65425","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-visual-basic-tutorial","tag-access-database-connection-string-in-vb-net","tag-database-connection-string-in-vb-net","tag-how-to-concatenate-two-strings-in-vb-net","tag-how-to-convert-string-to-date-in-vb-net","tag-how-to-define-string-array-in-vb-net","tag-how-to-write-connection-string-in-vb-net","tag-search-in-string-vb-net","tag-string-function-in-vb-net-with-example","tag-string-handling-in-vb-net","tag-string-in-vb-net","tag-string-to-date-conversion-in-vb-net","tag-vb-net-find-character-in-string","resize-featured-image"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>String in VB.net - String Function in VB.net with Example<\/title>\n<meta name=\"description\" content=\"Learn on how to create and execute the function of the String in VB.net and its uses. Check Here all the String Function in VB.net Example.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"String in VB.net - String Function in VB.net with Example\" \/>\n<meta property=\"og:description\" content=\"Learn on how to create and execute the function of the String in VB.net and its uses. Check Here all the String Function in VB.net Example.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/\" \/>\n<meta property=\"og:site_name\" content=\"Itsourcecode.com\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-25T07:17:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-21T05:51:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Strings-in-VB-NET.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1460\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"angel jude suarez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"angel jude suarez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/\"},\"author\":{\"name\":\"angel jude suarez\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/dafb6a91b43e60537c56e3e1d227d460\"},\"headline\":\"String in VB.net &#8211; String Function in VB.net with Example\",\"datePublished\":\"2022-06-25T07:17:08+00:00\",\"dateModified\":\"2023-11-21T05:51:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/\"},\"wordCount\":1758,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/ad9e0497e03b85a9ca299d935298f5dc\"},\"image\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/Strings-in-VB-NET.png\",\"keywords\":[\"access database connection string in vb net\",\"database connection string in vb net\",\"how to concatenate two strings in vb net\",\"how to convert string to date in vb net\",\"how to define string array in vb net\",\"how to write connection string in vb net\",\"search in string vb net\",\"String Function in VB.net with Example\",\"string handling in vb net\",\"String in VB.net\",\"string to date conversion in vb net\",\"vb net find character in string\"],\"articleSection\":[\"VB.NET Tutorial\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/\",\"name\":\"String in VB.net - String Function in VB.net with Example\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/Strings-in-VB-NET.png\",\"datePublished\":\"2022-06-25T07:17:08+00:00\",\"dateModified\":\"2023-11-21T05:51:17+00:00\",\"description\":\"Learn on how to create and execute the function of the String in VB.net and its uses. Check Here all the String Function in VB.net Example.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/#primaryimage\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/Strings-in-VB-NET.png\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/Strings-in-VB-NET.png\",\"width\":1460,\"height\":900,\"caption\":\"Strings in VB NET\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/tutorials\\\/visual-basic-tutorial\\\/string-in-vb-net\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/itsourcecode.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"String in VB.net &#8211; String Function in VB.net with Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#website\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/\",\"name\":\"Itsourcecode.com\",\"description\":\"Partner In Your Coding Journey!\",\"publisher\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/ad9e0497e03b85a9ca299d935298f5dc\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/itsourcecode.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/ad9e0497e03b85a9ca299d935298f5dc\",\"name\":\"itsourcecode\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\",\"width\":409,\"height\":409,\"caption\":\"itsourcecode\"},\"logo\":{\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/IT-SOURCECODE_ICON-07.jpg\"},\"description\":\"Hello Itsourcecoders, welcome to itsourcecode.com. I'm Joken Villanueva, MIT a passionate Blogger, Programmer and a Hobbyist. I started Itsourcecode because I wanted to give back and Share all the learnings and knowledge I've learned in my career and I believe through this website I would be able to help and assist those newbie programmers in enhancing their skills from different programming languages. So let us all help each other by sharing our ideas!\",\"sameAs\":[\"https:\\\/\\\/itsourcecode.com\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/#\\\/schema\\\/person\\\/dafb6a91b43e60537c56e3e1d227d460\",\"name\":\"angel jude suarez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/49f87b924bdd4e5fcbc3635ed3f7af29.jpg?ver=1776429718\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/49f87b924bdd4e5fcbc3635ed3f7af29.jpg?ver=1776429718\",\"contentUrl\":\"https:\\\/\\\/itsourcecode.com\\\/wp-content\\\/litespeed\\\/avatar\\\/49f87b924bdd4e5fcbc3635ed3f7af29.jpg?ver=1776429718\",\"caption\":\"angel jude suarez\"},\"description\":\"Hello programmers, I'm Angel Jude Reyes Suarez, a student and a programmer of different programming languages like Python, Java, JavaScript, PHP, C, C++, Vb.net, and MySQL. and I have also knowledge in developing system or websites from Front-End to Back-End. and also a writer of itsourcecode.com.\",\"url\":\"https:\\\/\\\/itsourcecode.com\\\/author\\\/angeljudesuarez\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"String in VB.net - String Function in VB.net with Example","description":"Learn on how to create and execute the function of the String in VB.net and its uses. Check Here all the String Function in VB.net Example.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/","og_locale":"en_US","og_type":"article","og_title":"String in VB.net - String Function in VB.net with Example","og_description":"Learn on how to create and execute the function of the String in VB.net and its uses. Check Here all the String Function in VB.net Example.","og_url":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/","og_site_name":"Itsourcecode.com","article_published_time":"2022-06-25T07:17:08+00:00","article_modified_time":"2023-11-21T05:51:17+00:00","og_image":[{"width":1460,"height":900,"url":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Strings-in-VB-NET.png","type":"image\/png"}],"author":"angel jude suarez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"angel jude suarez","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/#article","isPartOf":{"@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/"},"author":{"name":"angel jude suarez","@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/dafb6a91b43e60537c56e3e1d227d460"},"headline":"String in VB.net &#8211; String Function in VB.net with Example","datePublished":"2022-06-25T07:17:08+00:00","dateModified":"2023-11-21T05:51:17+00:00","mainEntityOfPage":{"@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/"},"wordCount":1758,"commentCount":0,"publisher":{"@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/ad9e0497e03b85a9ca299d935298f5dc"},"image":{"@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/#primaryimage"},"thumbnailUrl":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Strings-in-VB-NET.png","keywords":["access database connection string in vb net","database connection string in vb net","how to concatenate two strings in vb net","how to convert string to date in vb net","how to define string array in vb net","how to write connection string in vb net","search in string vb net","String Function in VB.net with Example","string handling in vb net","String in VB.net","string to date conversion in vb net","vb net find character in string"],"articleSection":["VB.NET Tutorial"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/","url":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/","name":"String in VB.net - String Function in VB.net with Example","isPartOf":{"@id":"https:\/\/itsourcecode.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/#primaryimage"},"image":{"@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/#primaryimage"},"thumbnailUrl":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Strings-in-VB-NET.png","datePublished":"2022-06-25T07:17:08+00:00","dateModified":"2023-11-21T05:51:17+00:00","description":"Learn on how to create and execute the function of the String in VB.net and its uses. Check Here all the String Function in VB.net Example.","breadcrumb":{"@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/#primaryimage","url":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Strings-in-VB-NET.png","contentUrl":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2022\/06\/Strings-in-VB-NET.png","width":1460,"height":900,"caption":"Strings in VB NET"},{"@type":"BreadcrumbList","@id":"https:\/\/itsourcecode.com\/tutorials\/visual-basic-tutorial\/string-in-vb-net\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/itsourcecode.com\/"},{"@type":"ListItem","position":2,"name":"String in VB.net &#8211; String Function in VB.net with Example"}]},{"@type":"WebSite","@id":"https:\/\/itsourcecode.com\/#website","url":"https:\/\/itsourcecode.com\/","name":"Itsourcecode.com","description":"Partner In Your Coding Journey!","publisher":{"@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/ad9e0497e03b85a9ca299d935298f5dc"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/itsourcecode.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/ad9e0497e03b85a9ca299d935298f5dc","name":"itsourcecode","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","url":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","contentUrl":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg","width":409,"height":409,"caption":"itsourcecode"},"logo":{"@id":"https:\/\/itsourcecode.com\/wp-content\/uploads\/2021\/01\/IT-SOURCECODE_ICON-07.jpg"},"description":"Hello Itsourcecoders, welcome to itsourcecode.com. I'm Joken Villanueva, MIT a passionate Blogger, Programmer and a Hobbyist. I started Itsourcecode because I wanted to give back and Share all the learnings and knowledge I've learned in my career and I believe through this website I would be able to help and assist those newbie programmers in enhancing their skills from different programming languages. So let us all help each other by sharing our ideas!","sameAs":["https:\/\/itsourcecode.com\/"]},{"@type":"Person","@id":"https:\/\/itsourcecode.com\/#\/schema\/person\/dafb6a91b43e60537c56e3e1d227d460","name":"angel jude suarez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsourcecode.com\/wp-content\/litespeed\/avatar\/49f87b924bdd4e5fcbc3635ed3f7af29.jpg?ver=1776429718","url":"https:\/\/itsourcecode.com\/wp-content\/litespeed\/avatar\/49f87b924bdd4e5fcbc3635ed3f7af29.jpg?ver=1776429718","contentUrl":"https:\/\/itsourcecode.com\/wp-content\/litespeed\/avatar\/49f87b924bdd4e5fcbc3635ed3f7af29.jpg?ver=1776429718","caption":"angel jude suarez"},"description":"Hello programmers, I'm Angel Jude Reyes Suarez, a student and a programmer of different programming languages like Python, Java, JavaScript, PHP, C, C++, Vb.net, and MySQL. and I have also knowledge in developing system or websites from Front-End to Back-End. and also a writer of itsourcecode.com.","url":"https:\/\/itsourcecode.com\/author\/angeljudesuarez\/"}]}},"_links":{"self":[{"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/65425","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/users\/1767"}],"replies":[{"embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/comments?post=65425"}],"version-history":[{"count":45,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/65425\/revisions"}],"predecessor-version":[{"id":120499,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/posts\/65425\/revisions\/120499"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/media\/65334"}],"wp:attachment":[{"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/media?parent=65425"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/categories?post=65425"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itsourcecode.com\/wp-json\/wp\/v2\/tags?post=65425"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}