ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2009年9月5日 星期六
Positive and Negative Lookahead, regexp
Lookahead and Lookbehind Zero-Width Assertions
The negative lookahead construct is the pair of round brackets, opening bracket followed by a question mark and an exclamation point
#a "q" not followed by a "u".
# 後面不是跟著u 的 q, 是要找q
q(?!u)
把 1234567 這樣的數字在印出加上逗號變成 1,234,567 這樣的格式
num.to_s.gsub(/(\d)(?=\d{3}+(\.\d*)?$)/, '\1,')
數字後面跟的數字(?=) 數目要是 3的倍數(\d{3}) 直到結尾 ($)
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言