Monday 9 May 2016

Proper Case String VB

Function Name : StrConv

Convert a string into desire specified format.

Syntax

StrConv(String,VbStrConv) as String 

VbStrConv Enumeration 
  • VbStrConv.Uppercase
  • VbStrConv.ProperCase 
  • VbStrConv.Lowercase 
  • And more case

Example :


StrConv("girfa student help", VbStrConv.ProperCase)

Output :


Girfa Student Help

No comments:

Post a Comment