SkipSpace

function SkipSpace(str, start)

空白の終わりを探す。

ソース

function SkipSpace(str, start) {
    var pos;
    for (pos = start; pos < str.length && str[pos] == ' '; pos++);

    return pos;
}