SkipSpace ================== .. js:function:: function SkipSpace(str, start) 空白の終わりを探す。 ソース ^^^^^^ .. code-block:: js function SkipSpace(str, start) { var pos; for (pos = start; pos < str.length && str[pos] == ' '; pos++); return pos; }