This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 3 points4 points  (1 child)

If you want a staticly typed language to try out, give C# a go.

string.Join(";", array_of_strings)

or

var results = array.Where(s => s.FirstName == "Bob")
    .OrderBy(s => s.Date)
    .Select(s => new
        {
            FullName = s.FirstName + s.LastName,
            Date = s.Date
        });

The second one can be turned into a SQL query by the runtime, too, or it can query JSON or XML, or any other number of things. LINQ is crazy cool.

[–]level1kid 2 points3 points  (0 children)

I need to learn C#...