|
|
|
Click here to copy the following block | Function SingularToPlural(ByVal singular As String) As String Dim lower As String = singular.ToLower() Dim res As String
If lower = "foot" Then res = "Feet" ElseIf lower = "goose" Then res = "Geese" ElseIf lower = "man" Then res = "Men" ElseIf lower = "woman" Then res = "Women" ElseIf lower = "criterion" Then res = "Criteria" ElseIf lower.EndsWith("y") AndAlso "aeiou".IndexOf(lower.Substring _ (lower.Length - 2, 1)) < 0 Then res = singular.Substring(0, singular.Length - 1) + "ies" Else res = singular + "s" End If
If singular = lower Then Return res.ToLower() ElseIf singular = singular.ToUpper() Then Return res.ToUpper() Else Return res End If End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|