PowerShell

Part-6: Text Manipulation in PowerShell using .ToCharArray(),.PadLeft(), and .PadRight() methods

  Part-1: Text Manipulation in PowerShell using Trim, TrimStart , TrimEnd methodsPart-2: Text Manipulation in PowerShell using .ToLower and .ToUpper methodPart-3: Text Manipulation in PowerShell using .StartsWith() and EndsWith() methodsPart-4: Text Manipulation in PowerShell using .Replace(), and .Remove() methods.Part-5: Text Manipulation in PowerShell using .Contains() and .Equals() methods Hi, Today we are going to see… Continue reading Part-6: Text Manipulation in PowerShell using .ToCharArray(),.PadLeft(), and .PadRight() methods

PowerShell

Part-5: Text Manipulation in PowerShell using .Contains() and .Equals() methods

  Part-1: Text Manipulation in PowerShell using Trim, TrimStart , TrimEnd methodsPart-2: Text Manipulation in PowerShell using .ToLower and .ToUpper methodPart-3: Text Manipulation in PowerShell using .StartsWith() and EndsWith() methodsPart-4: Text Manipulation in PowerShell using .Replace(), and .Remove() methods.   Hi, today we are using .Contains() and .Equals() method on our text. The output of… Continue reading Part-5: Text Manipulation in PowerShell using .Contains() and .Equals() methods

PowerShell

Part-4: Text Manipulation in PowerShell using .Replace(), and .Remove() methods.

Part-1: Text Manipulation in PowerShell using Trim, TrimStart , TrimEnd methodsPart-2: Text Manipulation in PowerShell using .ToLower and .ToUpper methodPart-3: Text Manipulation in PowerShell using .StartsWith() and EndsWith() methods Hi, Today we are using .replace and .remove methods to play with the string. Lets start. Today i am using some fake email id as text.… Continue reading Part-4: Text Manipulation in PowerShell using .Replace(), and .Remove() methods.

PowerShell

Part-3: Text Manipulation in PowerShell using .StartsWith() and EndsWith() methods

  Part-1: http://newdelhipowershellusergroup.blogspot.com/2012/01/part-1-text-manipulation-in-powershell.html | using Trim(),TrimEnd(),TrimStart() Part-2: http://newdelhipowershellusergroup.blogspot.com/2012/01/part-2-text-manipulation-in-powershell.html | ToUpper(),ToLower() Hi, Today we are going to use .StartsWith() and .EndsWith() methods to play with our text. we are using the same text which we used in previous posts and saving the text in a variable $text $text = “The Quick brown fox jumps over the lazy dog”… Continue reading Part-3: Text Manipulation in PowerShell using .StartsWith() and EndsWith() methods

PowerShell

Part-2: Text Manipulation in PowerShell using .ToLower and .ToUpper method

  Part-1: http://newdelhipowershellusergroup.blogspot.com/2012/01/part-1-text-manipulation-in-powershell.html Hi, In part-1 of text manipulation we saw how to use .Trim(),.TrimStart() and TrimEnd() method. Today we will see how to use .ToLower and ToUpper() Method. Lets start we are using the same text which we used in part-1 and saving the text in a variable $text $text = “The Quick brown… Continue reading Part-2: Text Manipulation in PowerShell using .ToLower and .ToUpper method