Print
Add To Favorites
Email To Friend
Rate This Article
|
Useful JavaScript/VBScript String Functions (Server side)
|
Published:
09 Oct 2003
|
Abstract
Common string function in VBScript and JavaScript that will divide a text string into equal portions, left and right. |
 |
by Taewook Kang
Feedback
|
Average Rating: This article has not yet been rated.
Views (Total / Last 10 Days):
19094/
30
|
|
|
VBScript Version |
Following are the common string functions (both in VBScript and JavaScript) which can be used in your application.
<SCRIPT LANGUAGE="VBScript" RUNAT=Server>
'chop function 'Author: Taewook Kang ( txkang@wichita.edu )
' 'chop function takes four arguments. 'Ex: 'if you do... 'chop( "Hello Kang! Nice to meet you!","",leftPortion,rightPortion ) 'as a result, leftPortion will contain "Hello Kang! Nice" and rightPortion will contain " to meet you!" 'I find this function useful in making newsletter application and I use this often.
function chop( byval s,byval item,byref p1,byref p2 ) dim chop_itemLength,chop_location
chop_itemLength = len( item ) chop_location = instr( 1,s,item,vbBinaryCompare )
p1 = mid( s,1,chop_location - 1 ) p2 = mid( s,chop_location + chop_itemLength,len( s ) ) end function
</script> | |
|
|
User Comments
No comments posted yet.
|
Product Spotlight
|
|