
![]() |
Show Changes |
![]() |
|
![]() |
Recent Changes |
![]() |
Subscriptions |
![]() |
Lost and Found |
![]() |
Find References |
![]() |
Rename |
![]() |
Administration Page |
| Search |
History
| 3/2/2006 8:36:04 PM |
| -68.209.248.222 |
| 3/2/2006 6:50:29 AM |
| -68.209.248.222 |
| 3/2/2006 6:47:51 AM |
| -68.209.248.222 |
| 3/2/2006 6:45:44 AM |
| -68.209.248.222 |
| 3/2/2006 6:43:23 AM |
| -68.209.248.222 |
![]() |
List all versions |
Returns true if the source string starts with the prefix
Returns true if the source string starts with the prefix, ignoring case of source and prefix
StartsWith("Foo","Fo") = true
StartsWith("Foo","bar") = false
StartsWith("Fo","foo") = false
StartsWith("Fo","Fo") = true
Returns true if the source string ends with the postfix
Returns true if the source string ends with the postfix, ignoring case of source and postfix
EndsWith("Fo","o") = true
EndsWith("Fo","b") = false
EndsWith("Fo","Foo") = false
EndsWith("o,"o") = true
Returns an Array of Topics that have one or more WikiPageProperties that start with the topicPrefix specified
Returns an Array of Arrays containing the Topic Name and the Property Name for each of the intopic's Properties that start with the specified topicPrefix
Prints the following table
| Topic | Name | Note |
| NathanJonesUtilities | Test1 | A test todo for demo |
| NathanJonesUtilities | Test2 | Another test todo for demo |
A variation on this that we use since we have NT-authentication turned on is to change the
owner.Equals(each.GetProperty("Owner"))
test to
EndsWithIgnoreCase(each.GetProperty("Owner"),owner)
to help with people that just put their nt login names without the domain