Windows IT Pro is the authoritative and independent resource for windows nt, windows 2000, windows 2003, windows xp. Features a collection of resources and magazines for windows IT professionals.
  
  
  Advanced Search 


May 2008

Getting and Using the System.String Object's Members


RSS
Subscribe to Windows IT Pro | See More Systems Administration Articles Here | Reprints
Or get the Monthly Online Pass—only $5.95 a month!
Main Article    PowerShell 101, Lesson 4

PowerShell treats all strings as System.String objects. This means that you can use the rich set of methods and properties available to those objects.

As shown Lesson 3, the Get- Member cmdlet retrieves an object’s members as the object is passed down the pipeline. Because a string is passed down as an object, you can use Get- Member for that string. For example, the following statement retrieves the object members for the string test output:

“test output” | Get-Member
As you can see in Figure A, a string object supports numerous methods, including Substring and GetType. If you were to scroll down, you would also find the Length property, which provides the number of characters in the string.

Now suppose you want to learn more about the Substring method of the System.String object. You can again use Get- Member to retrieve the information you need. You specify the Substring method as an argument to Get-Member, then pipeline the results to the Format-List cmdlet:

“test output” |
Get-Member Substring |
Format-List
Figure B shows the statement’s result. Notice that the definition includes details about how to use the method. This is the method’s syntax. The syntax specifies that you can choose one of two approaches when calling this method. Those approaches are:
System.String Substring(Int32 startIndex)
System.String Substring(Int32 startIndex, Int32 length)

In the first approach, you provide the target string and an integer that specifies the position in which you want the substring to start. The method will then return a substring that begins at this position and ends at the end of the string. For example, if the target string is test output and you want to return a substring that starts at position 5, you’d use the statement

(“test output”).Substring(5)
which would return the substring output. As this statement shows, you must enclose the target string in parentheses, then add a period followed by the method name and the parameter enclosed in parentheses.

In the second approach, you provide the target string and the substring’s starting position and length. For example, suppose you want to return a substring that starts at the beginning of the string (position 0) and is four characters long. You’d use the statement

(“test output”).Substring(0,4)
which would return the substring test.

When you call a method such as Substring or GetType, it generates its own object that can be passed down the pipeline. As a result, you can use Get-Member to retrieve a list of those object’s members. For example, the GetType method returns a System.RuntimeType object, and that object supports numerous methods and properties. The following statement returns a list of properties available to the System.RuntimeType object:

(“test output”).GetType() |
Get-Member -MemberType Property

As the statement shows, you first enclose the string in parentheses, add a period followed by the method name, which in this case is Get- Type. You then pipe the object returned by GetType to Get-Member. Notice that I’ve used the -MemberType parameter to display only the returned object’s properties. Figure C shows the results.

End of Article



Reader Comments

You must log on before posting a comment.

If you don't have a username & password, please register now.




Top Viewed ArticlesView all articles
Windows Chief Leaving Microsoft

Kevin Johnson, the man most directly responsible for current and future versions of Windows, as well as Windows Live and Microsoft's online services, is leaving the company for a position at Juniper Networks. Johnson has been co-president or president ...

How can I limit Exchange mailbox size?

...

The Memory-Optimization Hoax

Don't believe the hype. At best, RAM optimizers have no effect. At worst, they seriously degrade performance. ...


Windows OSs Whitepapers Replay for Exchange: Enterprise Protection and an Affordable Price

Are You Satisfied?

A Preliminary Look at Deployment Plans for Microsoft Windows Vista

Related Events Check out our list of Free Email Newsletters!

Scripting eBooks Keeping Your Business Safe from Attack: Encryption and Certificate Services

Best Practices for Managing Linux and UNIX Servers

Building an Effective Reporting System

Related Scripting Resources Become a VIP member of the Windows IT Pro community!
Get it all with the VIP CD and VIP access. A $500+ value for only $279!

Subscribe to Windows IT Pro!
Solve your toughest technical problems with our experts and access 10,000 + articles online. 30% off

Monthly Online Pass - Only $5.95!
Get instant access to 10,000+ articles from Windows IT Pro Magazine!

TechNet Virtual Labs
Evaluate and test Microsoft's newest products.


ADS BY GOOGLE SPONSORED LINKS FEATURED LINKS

Shortcut Guide to SQL Server Infrastructure Optimization
With right tools and techniques, you can have a top-performing SQL Server infrastructure without having to cram your data centers so that they're overflowing. Download this eBook to learn how.

WinConnections Conference Fall 2008
Don’t miss the premier event for Microsoft IT Professionals in Las Vegas, November 10-13. Register and book your room by August 25 and receive a FREE room night (based on a three night minimum stay).

Become a fan of Windows IT Pro on Facebook!
Join us on Facebook and be a fan of Windows IT Pro!

Continuous Data Protection and Recovery for Exchange
Read this white paper to learn about Continuous Data Protection (CDP), Exchange 2007's local continuous replication and cluster continuous replication features.

Rev Up Your IT Know-How with Our Recharged Magazine!
The improved Windows IT Pro provides trusted IT content with an enhanced new look and functionality! Get comprehensive coverage of industry topics, expert advice, and real-world solutions—PLUS access to over 10,000 articles online. Order today!

Tips to Managing Messaging
Discover three fundamental mail and messaging management services - security, availability and control services - and how you can implement them in a Microsoft-centric mail and messaging environment.

Get It All with Windows IT Pro VIP
Stock your IT toolbox with every solution ever printed in Windows IT Pro and SQL Server Magazine plus bonus Web-exclusive content on hot topics. Subscribe to receive the VIP CD and a subscription to your choice of Windows IT Pro or SQL Server Magazine!



Solving PST Management Problems
In this white paper, read about the top PST issues and how to administer local/network PST files.

Bandwidth Monitoring Tool from SolarWinds
Identify largest bandwidth users in seconds. Get the free download now.

Transform Your Data Center at Brocade Conference 2008
Storage networking industry’s premier event at the MGM Grand, Las Vegas, September 22 - 24, 2008

Are You Litigation Ready?
Collecting and processing electronic data for e-discovery can be time-consuming and expose a business to significant legal risks. Get prepared with this free white paper

Order Your Fundamentals CD Today!
Gain an introduction to Exchange, learn server security requirements, and understand how unified communications can play a role in your messaging strategies with this free Exchange CD.

KVM over IP Solutions
Learn about a KVM over IP solution that is specifically designed to meet the needs of the distributed IT environment.
Windows IT Pro Home Register FAQ for Windows WinInfo News
Europe Edition About Us Contact Us/Customer Service Media Kit Affiliates / Licensing  
SQL Server Magazine Office & SharePoint Pro Windows Dev Pro IT Job Hound
IT Library Technical Resources Directory Connected Home Windows Excavator SuperSite 
 
 Windows IT Pro is a Division of Penton Media Inc.
 Copyright © 2008 Penton Media, Inc., All rights reserved. Terms and Use | Privacy Statement | Reprints and Licensing