Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. namespace ExtensionMethods
  2. {
  3.     public static class MyExtensions
  4.     {
  5.         public static int WordCount(this String str)
  6.         {
  7.             return str.Split(new char[] { ' ', '.', '?' },
  8.                              StringSplitOptions.RemoveEmptyEntries).Length;
  9.         }
  10.     }  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement