//Microsoft Public License (Ms-PL)
//http://visualizer.codeplex.com/license
using System;
using System.Collections.Generic;
namespace Redwerb.BizArk.Core.StringExt
{
///
/// Provides extension methods for strings.
///
public static class StringExt
{
///
/// Splits the string into words (all white space is removed).
///
///
///
public static string[] Words(this string str)
{
return str.Split(new char[] { }, StringSplitOptions.RemoveEmptyEntries);
}
}
}