Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
String Pattern : Alternet Character Capital
#2
Solved: 8 Years, 8 Months, 1 Week ago
Quick Snippet
Code:
input = "abhijit abhijit"
For i  = 1 To len(input) Step 1
    If  i mod 2 = 0 Then
        outPut = output & Ucase(Mid(input,i,1))
    Else
        outPut = output & Mid(input,i,1)
    End If
    
Next

msgbox output
Thanks,
SUpputuri
Reply


Messages In This Thread
RE: String Pattern : Alternet Character Capital - by supputuri - 09-02-2015, 12:05 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Not able to use wild character in string amit25007 2 2,417 03-09-2016, 10:36 AM
Last Post: amit25007
  VB Script:number of times a character appears in a string with position Jyobtech 1 11,756 08-07-2013, 01:03 PM
Last Post: anil2u
  Find capital letter in a string Arul 2 8,358 12-27-2011, 11:11 PM
Last Post: Arul
  How to have a variable that has a string comma string .. shareq1310 5 4,795 11-09-2011, 03:33 PM
Last Post: parminderdhiman84
Question String Comparison using escape character Charanpreet 2 3,894 04-21-2011, 07:12 PM
Last Post: sreekanth chilam

Forum Jump:


Users browsing this thread: 1 Guest(s)