05-21-2012, 05:02 PM
(This post was last modified: 05-21-2012, 05:04 PM by rjkmr.aiht.)
|
split the values in url .......................
|
|
05-21-2012, 05:14 PM
Hi,
Try this Code: Dim a
strURL="https://cs11.salesforce.com/00QZ0000001J1zV"
a=Split(strURL,"/")
Msgbox Ubound(a)Thanks, Arul.D
05-21-2012, 05:35 PM
you can use below mentioned method also
Code: dynamicstring=split(a,".com/")
msgbox dynamicstring(1)
05-21-2012, 06:09 PM
Modifying arul's post..
Code: Dim a
strURL="https://cs11.salesforce.com/00QZ0000001J1zV"
a=Split(strURL,"/")
Msgbox a(Ubound(a))Regards, Ankesh |
|
« Next Oldest | Next Newest »
|
| Possibly Related Threads… | |||||
| Thread | Author | Replies | Views | Last Post | |
| Split function in string | nidhishnair | 13 | 67,401 |
07-07-2020, 03:47 PM Last Post: helmzshelmz |
|
|
|
Split Function | Chaithra N | 0 | 1,534 |
12-18-2019, 11:33 AM Last Post: Chaithra N |
| Split a string with multiple delimiters in VBScript | nandha | 2 | 9,634 |
02-10-2018, 06:44 PM Last Post: nandha |
|
| Problems with URL as Object identifier??? | jcraig26 | 1 | 3,886 |
02-27-2013, 05:06 PM Last Post: anil2u |
|
| Split Function | diya | 2 | 6,425 |
11-28-2012, 08:49 PM Last Post: diya |
|
Users browsing this thread: 1 Guest(s)

