|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Strip off Characters from a variable
Hello All,<br> Does anyone know of a way to strip off Characters from a variable? <br><br>Exp: I have an input Name of "John Doe"<br> I want WSH to adjust it to "JDoe"<br><br>Any Ideas? <br>Thanks.
|
|
#2
|
|||
|
|||
|
Is it defined as the first character of the first word and all of the second word? <br><br>Will there always be a multiple words?<p> </p><p><hr size="1" width="50%" align="left" />dotNetBB Forum Developer<br><b><i>Building A Better Community, One Post At A Time</i></b><br><a href="http://www.dotnetbb.com" target="_blank">www.dotnetbb.com</a></p>
|
|
#3
|
|||
|
|||
|
Mostly it is for UserNames so yes there will be multiple words Separated by a space.<br><br>If I could find a way to separate the Variable by the space then I could use the "Left" command but I don't know how to split a variable like that. <br><br>Still Kinda new to WSH <img src="/forum/emoticons/blush.gif" alt="blush"><p><i>Last Edited : 2/13/2003 10:10:14 PM GMT</i></p>
|
|
#4
|
|||
|
|||
|
Try something like this...<br><div class="msgQuoteWrap"><div class="msgCode"><br>Dim username <br>username = "John Doe"<br>Dim myVar<br>myVar = Split(myVar, " ")<br>Dim i <br>For i = LBound(myVar) to UBound(myVar)<br> response.write("Array value #" & i & " :: " & myVar(i) & "<br />")<br>Next<br></div></div><p> </p><p><hr size="1" width="50%" align="left" />dotNetBB Forum Developer<br><b><i>Building A Better Community, One Post At A Time</i></b><br><a href="http://www.dotnetbb.com" target="_blank">www.dotnetbb.com</a></p>
|
|
#5
|
|||
|
|||
|
Err.. that was asp code, but you should be able to modify it to get the point.<p> </p><p><hr size="1" width="50%" align="left" />dotNetBB Forum Developer<br><b><i>Building A Better Community, One Post At A Time</i></b><br><a href="http://www.dotnetbb.com" target="_blank">www.dotnetbb.com</a></p>
|
|
#6
|
|||
|
|||
|
Perfect!<br>Thank you oh great Scripting Gods! <img src="/forum/emoticons/lol.gif" alt="lol">
|
![]() |
| Viewing: ASP Free Forums > Programming > HTML, JavaScript And CSS Help > Strip off Characters from a variable |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|