Title is the entire question. Can someone give me a reason why this happens?
|
2
|
|
|
|
|
|
Yes - because it does begin with the empty string. Indeed, the empty string logically occurs between every pair of characters. Put it this way: what definition of "starts with" could you give that would preclude this? Here's a simple definition of "starts with" that doesn't: "x starts with y if the first y.Length characters of x match those of y." An alternative (equivalent) definition: "x starts with y if x.Substring(0, y.Length).Equals(y)" |
||||||||||||
|
|
|
Just for the record, String.StartsWith() internally calls System.Globalization.CultureInfo.IsPrefix() which makes the following check explicitly:
|
||
|
|
|
|
I'll start with a related fact that is easier to understand. The empty set is a subset of every set. Why? The definition of subset states that Now fix a set Any string starts with the empty string. First, we must agree on our definition of starts with. Let
is true. In plain English, Now fix a string
is false. Therefore, it is not the case that The following is an implementation of starts with coded as an extension to
The above two bolded facts are examples of vacuously true statements. They are true by virtue of the fact that the statements defining them (subset and starts with) are universal quantifications over empty universes. There are no elements in the empty set, so there can not be any elements of the empty set not in some other fixed set. There are no characters in the empty string, so there can not be a character as some position in the empty string not matching the character in the same position in some other fixed string. |
|||
|
|
|
|
Let's just say “abcd”.StartsWith(“”) returns false. if so then what does the following expression eval to, true or false: ("abcd".Substring(0,0) == "") it turns out that evals to true, so the string does start with the empty string ;-), or put in other words, the substring of "abcd" starting at position 0 and having 0 length equals the empty string "". Pretty logical imo. |
||
|
|
|
|
I will try to elaborate on what Jon Skeet said. Let's say x, y and z are strings and + operator is in fact concatenation, then: If we can split z to write z = x + y that means that z starts with x. Because every string z can be split to z = "" + z it follows that every string starts with "". So, because ("" + "abcd") == "abcd" it follows that "abcd" starts with "" |
||||||||||
|
|
|
If you think of it in regular expressions terms, it makes sense. Every string (not just "abcd", also "" and "sdf\nff") , returns true when evaluating the regular expression of 'starts with empty string'. |
||
|
|
|
|
Because a string begins well with "nothing". |
||
|
|
|
|
In C# this is how the specification tells it to react;
|
||
|
|
|
|
The first N characters of the two strings are identical. N being the length of the second string, i.e. zero. |
||
|
|
|
|
This method compares the value parameter to the substring at the beginning of this string that is the same length as value, and returns a value that indicates whether they are equal. To be equal, value must be an empty string (Empty), a reference to this same instance, or match the beginning of this instance. true if the character sequence represented by the argument is a prefix of the character sequence represented by this string; false otherwise. Note also that true will be returned if the argument is an empty string or is equal to this String object as determined by the equals(Object) method. |
||
|
|
|
|
Well, because it is specified this way. See here. |
||
|
|
