StrConv() Example Syntax VB.NET ASP.NET | StrConv() | Source Code
Get 5 Hours of FREE PREMIUM Videos:
LearnVisualStudio.NET Free Preview
“ I am a lifetime member of LearnVisualStudio.net and a Premium Plus member of dotNetVideos.net.
LearnVisualStudio.net is awesome because it grows in value each year as more videos are added.
dotNetVideos.net is also great because it focuses a lot on MS Certifications and practical interview questions.
”
- Wade Harvey (IdealProgrammer.com)
Premium (Not Free) Video Tutorials
Free Video Tutorials & Free Tools
StrConv Example Syntax VB.NET ASP.NET | StrConv | Source Code
Summary: – Illustrates using StrConv with Source Code Syntax Example in VB.NET ASP.NET.
*** 1. Download Source Code *** |
|---|
Download Source Code for All VB ASP.NET Examples in One Project – source code for hundreds of VB.NET ASP.NET examples neatly organized in a single project. Check back often to download the latest version of the project with even more code samples. |
*** 2. StrConv Syntax ***
Purpose:
returns string converted as specified
Syntax:
StrConv(string1,conversion,LocalId)
StrConv(string1,conversion,LocalId)
| Parameters | Description | string1 | Required. String expression to be converted. |
|---|---|
| conversion | Required. VbStrConv member. The enumeration value specifying the type of conversion to perform. Enumeration(member) Description() VbStrConv.None() Performs no conversion VbStrConv.LinguisticCasing() Uses linguistic rules for casing, rather than File System (default). Valid with VbStrConv.UpperCase and VbStrConv.LowerCase only. VbStrConv.Uppercase() Converts the string to uppercase characters. VbStrConv.Lowercase() Converts the string to lowercase characters. VbStrConv.ProperCase() Converts the first letter of every word in string to uppercase. VbStrConv.Wide* Converts narrow (half-width) characters in the string to wide (full-width) characters. VbStrConv.Narrow* Converts wide (full-width) characters in the string to narrow (half-width) characters. VbStrConv.Katakana** Converts Hiragana characters in the string to Katakana characters. VbStrConv.Hiragana** Converts Katakana characters in the string to Hiragana characters. VbStrConv.SimplifiedChinese* Converts Traditional Chinese characters to Simplified Chinese. VbStrConv.TraditionalChinese* Converts Simplified Chinese characters to Traditional Chinese. * – Chinese locales only ** – Japanese locales only |
| LocalId | Optional. The LocaleID value, if different from the system LocaleID value. (The system LocaleID value is the default.) |
| Result Data Type | Description | string | Converted string expression |
|---|
*** 3. StrConv – Quick Example *** | Dim strString1 As String = "Hello" TextBox1.Text = StrConv(strString1, VbStrConv.Lowercase) 'Returns hello |
|---|
*** 4. StrConv – Full Example ***StrConv Example Output ScreenshotStep 1: Click on Visual Basic to Cut-n-paste code into StrConv.aspx.vb
Step 2: Click on XML to Cut-n-paste code into StrConv.aspx
Prerequistes:
Notes:
Instructions:
|
Related posts:
- VB.NET StrConv() – Code Sample Syntax Example VB.NET StrConv() - Code Sample Syntax Example...
- VB.NET ASP.NET LCase() Source Code Syntax Example VB.NET ASP.NET LCase() Source Code Syntax Example...
- VB.NET ASP.NET Mid() Source Code | Mid() Example Syntax VB.NET ASP.NET Mid() Source Code | Mid() Example Syntax...
- Right() Example Syntax VB.NET ASP.NET | Right() | Source Code Right() Example Syntax VB.NET ASP.NET | Right() | Source Code...
- VB.NET ASP.NET Left() Source Code Syntax Example VB.NET ASP.NET Left() Source Code Syntax Example...
Related posts brought to you by Yet Another Related Posts Plugin.













































