Loading navigation

Atlas

Your web-based eye in the sky

Road maps, satellite views, directions, GPS tracking, and more! Atlas is the easiest way to find what you're looking for.

Open

Ready to get started?

Open Atlas now.
Details

Want more information?

Read more about Atlas.

Bugs

Bug tracking made stupid easy

More advanced than Post-it notes, less complicated than Team System. We've stripped the bloat from traditional bug tracking systems and dramatically simplified the whole mess.

Open

Ready to get started?

Open Bugs now.
Details

Want more information?

Read more about Bugs?

Folders

Your files, on the internets

Store your digital photos, music, movies and documents online. Work with files in your web browser like you would on your desktop.

Open

Ready to get started?

Open Folders now.
Details

Want more information?

Read more about Folders.

Gadgets

Mini-applications for Windows Live

Gadgets customize your Windows Live homepage, putting you in charge of what information you'd like to interact with.

Open

Ready to get started?

Add all of our gadgets to your Live.com page.
Details

Want more information?

Read more about the gadgets we've created for Live.com.

Scripts

JavaScript Framework designed for .NET gurus

Built for software developers, Scripts is an object oriented JavaScript framework with a programming model similar to the Microsoft .NET Framework.

Open

Ready to get started?

Open the examples and browse through the documentation.
Details

Want more information?

Read more about Scripts.

FreshLogicStudios.Scripts.String

Summary


Represents text as a series of Unicode characters.
Defined in String.js

Constructors

FreshLogicStudios.Scripts.String()

Properties

Methods

  • static String Format()
    Replaces each format item in a specified String with the text equivalent of a corresponding object's value.

    Parameters

    • format - A composite format string (example: 'My name is {0}. My favorite color is {1}.')
    • args - An Object array containing zero or more objects to format.

    Return Values

    A copy of format in which the format items have been replaced by the String equivalent of the corresponding instances of object in args.
  • static Boolean IsNullOrEmpty(<String> value)
    Indicates whether the specified string is a null reference or an empty string.

    Parameters

    • value - A string.

    Return Values

    True if the value parameter is a null reference or an empty string (""); otherwise, false.
  • static String Join(<String> separator, <String> value)
    Concatenates a specified separator String between each element of a specified String array, yielding a single concatenated string. For example if separator is ", " and the elements of value are "apple", "orange", "grape", and "pear", Join(separator, value) returns "apple, orange, grape, pear".

    Parameters

    • separator - A String. If separator is null, the empty string is used instead.
    • value - An array of String.

    Return Values

    A String consisting of the elements of value interspersed with the separator string.