Windows Scripting
  Home arrow Windows Scripting arrow Page 4 - Using .NET Interops in VBScript
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
WINDOWS SCRIPTING

Using .NET Interops in VBScript
By: Nilpo
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 2
    2008-12-22

    Table of Contents:
  • Using .NET Interops in VBScript
  • Sorting Arrays in VBScript
  • Working with Strings
  • More with StringBuilder

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Using .NET Interops in VBScript - More with StringBuilder


    (Page 4 of 4 )

    There's plenty more you can do with the StringBuilder object as well.  Let's take a look at some other string manipulations.

    sb.Replace "loneliest", "saddest"

    sb.Replace "happiest", "luckiest"

    WScript.Echo sb.ToString()

    Here I'm using the Replace method to replace one substring with another.  This is quite similar to VBScript's own Replace function.

    sb.Remove 7, 8

    sb.Remove 21, 9

    WScript.Echo sb.ToString()

    You can also use the StringBuilder object's Remove method to remove sequences of characters.  The first parameter is a starting index and the second is the number of characters to remove.  I've used it here to remove the words "saddest" and "luckiest", respectively.

    sb.Insert_2 7, "saddest "

    sb.Insert_2 30, "luckiest "

    WScript.Echo sb.ToString()

    Not too worry, though.  We can just as easily add them back in with the Insert method.  Here again we have an overloaded method.  The second variation of the Insert method allows us to provide an integer-starting index and a string to insert.

    WScript.Echo sb.Length

    Having trouble keeping track of how long your string is?  The StringBuilder object also exposes a few properties that may come in handy.  One of these is the Length property, which returns an integer representing the length of the string.

    Okay, one more quick .NET bite before I go.  One very lacking feature in VBScript is its ability to produce random numbers.  It's not very efficient, and quite honestly, not very random.  Its seeded values make it difficult to produce anything close to a truly random number.

    Set objRandom = CreateObject("System.Random")

    WScript.Echo objRandom.Next_2(1,100)

    Enter .NET to the rescue.  This example shows you how to produce random integers between 1 and 100.  The second overloaded Next method allows you to specify a lower and upper limit, respectively.

    Well, that's it for me, folks.  I'm out of space in this article.  You may or may not have a use for any of the code in this article, but at least now you know that .NET is not completely unavailable to you for scripting.  Until next time, keep coding!


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

       · Thank you for these articles. I have been looking for a way to access the...
     

    WINDOWS SCRIPTING ARTICLES

    - More Windows Scripting Workarounds from Nilpo
    - Overloading Methods and More in VBScript
    - Improving MFC for Windows Vista
    - Regular Expressions in VBScript
    - Working with Dates in WMI
    - Completing Calendars with VBScript Date Func...
    - Building Calendars with VBScript Date Functi...
    - Working With Dates and Times in VBScript
    - Designing WCF DataContract Classes Using the...
    - Understanding Dates and Times in VBScript
    - Working With Arrays in VBScript
    - Compressed Folders in WSH
    - Using .NET Interops in VBScript
    - Nilpo`s Scripting Secrets, Vol I
    - Database operations using Silverlight 2.0 WC...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
    Stay green...Green IT