zoukankan      html  css  js  c++  java
  • 日期时间函数的调用

    日期时间函数(需要用变量调用):
    var b = new Date(); 获取当前时间
    a.getTime() 获取时间戳
    a.getFullYear() 获取年份
    a.getMonth()+1; 获取月份
    a.getDate()获取天
    a.getHours() 获取小时
    a.getMinutes() 获取分钟
    a.getSeconds() 获取秒数
    a.getDay() 获取星期几
    a.getMilliseconds() 获取毫秒
    Date()获取完整日期


    数学函数(用Math来调用):
    abs(x) 返回数的绝对值。
    ceil(x) 对数进行上舍入。
    floor(x) 对数进行下舍入。
    round(x) 把数四舍五入为最接近的整数。
    max(x,y) 返回 x 和 y 中的最高值。
    min(x,y) 返回 x 和 y 中的最低值。
    pow(x,y) 返回 x 的 y 次幂。
    sqrt(x) 返回数的平方根。
    random() 返回 0 ~ 1 之间的随机数。 ****

    字符串函数(用变量来调用):

    indexOf
    返回字符串中一个子串第一处出现的索引(从左到右搜索)。如果没有匹配项,返回 -1 。
    var index1 = a.indexOf("l");
    //index1 = 2

    charAt
    返回指定位置的字符。
    var get_char = a.charAt(0);
    //get_char = "h"

    lastIndexOf
    返回字符串中一个子串最后一处出现的索引(从右到左搜索),如果没有匹配项,返回 -1 。
    var index1 = lastIndexOf('l');
    //index1 = 3


    match
    检查一个字符串匹配一个正则表达式内容,如果么有匹配返回 null。
    var re = new RegExp(/^w+$/);
    var is_alpha1 = a.match(re);
    //is_alpha1 = "hello"
    var is_alpha2 = b.match(re);
    //is_alpha2 = null

    substring
    返回字符串的一个子串,传入参数是起始位置和结束位置。

  • 相关阅读:
    Leetcode 121. Best Time to Buy and Sell Stock
    Leetcode 120. Triangle
    Leetcode 26. Remove Duplicates from Sorted Array
    Leetcode 767. Reorganize String
    Leetcode 6. ZigZag Conversion
    KMP HDU 1686 Oulipo
    多重背包 HDU 2844 Coins
    Line belt 三分嵌套
    三分板子 zoj 3203
    二分板子 poj 3122 pie
  • 原文地址:https://www.cnblogs.com/yuyan0513/p/6603125.html
Copyright © 2011-2022 走看看