Lines Matching full:static
39 public static class StringExtensions
43 public static char charAt( this string str, int index )
49 public static bool endsWith( this string str, string value )
55 public static int indexOf( this string str, char value )
61 public static int indexOf( this string str, char value, int startIndex )
67 public static int indexOf( this string str, string value )
73 public static int indexOf( this string str, string value, int startIndex )
79 public static int lastIndexOf( this string str, char value )
85 public static int lastIndexOf( this string str, string value )
91 public static int length( this string str )
97 public static string replace(this string str, char oldValue, char newValue)
103 public static string replaceAll( this string str, string regex, string newValue )
108 public static string replaceFirst( this string str, string regex, string replacement )
115 public static bool startsWith( this string str, string value )
121 public static string substring( this string str, int startOffset )
127 public static string substring(this string str, int startOffset, int endOffset)
133 public static char[] toCharArray( this string str )
139 public static string toUpperCase( this string str )
145 public static string trim( this string str )