タグ

2009年7月23日のブックマーク (3件)

  • Browser fixes :: XRegExp

    “Regular Expressions Cookbook manages to be simultaneously accessible and almost ridiculously comprehensive.” —Jeff Atwood Recommended regex tools: • RegexBuddy • RegexMagic • PowerGREP Splitting on regex matches There are several cross-browser inconsistencies when using a regular expression as the delimiter with the native String.prototype.split method. Divergences from the ES3/5 standard are lis

    wacky
    wacky 2009/07/23
    JavaScriptの正規表現におけるブラウザごとの動作非互換性まとめ。spliceメソッド、lastIndexプロパティ、replaceメソッドなど。(英語)
  • はてなグループの終了日を2020年1月31日(金)に決定しました - はてなの告知

    はてなグループの終了日を2020年1月31日(金)に決定しました 以下のエントリの通り、今年末を目処にはてなグループを終了予定である旨をお知らせしておりました。 2019年末を目処に、はてなグループの提供を終了する予定です - はてなグループ日記 このたび、正式に終了日を決定いたしましたので、以下の通りご確認ください。 終了日: 2020年1月31日(金) エクスポート希望申請期限:2020年1月31日(金) 終了日以降は、はてなグループの閲覧および投稿は行えません。日記のエクスポートが必要な方は以下の記事にしたがって手続きをしてください。 はてなグループに投稿された日記データのエクスポートについて - はてなグループ日記 ご利用のみなさまにはご迷惑をおかけいたしますが、どうぞよろしくお願いいたします。 2020-06-25 追記 はてなグループ日記のエクスポートデータは2020年2月28

    はてなグループの終了日を2020年1月31日(金)に決定しました - はてなの告知
    wacky
    wacky 2009/07/23
    複数行テキストの中でマッチする正規表現の書き方( /[\s\S]*/ )。mオプションは行頭(^)と行末($)マッチングに対するもの。
  • JavaScript Regex :: XRegExp

    “Regular Expressions Cookbook manages to be simultaneously accessible and almost ridiculously comprehensive.” —Jeff Atwood Recommended regex tools: • RegexBuddy • RegexMagic • PowerGREP What is it? XRegExp provides augmented (and extensible) JavaScript regular expressions. You get modern syntax and flags beyond what browsers support natively. XRegExp is also a regex utility belt with tools to make

    wacky
    wacky 2009/07/23
    JavaScriptの正規表現を拡張するクロスブラウザなライブラリ。いくつかの便利なメソッドや、名前付きキャプチャやインラインコメント、「s」「x」フラグなどECMAScript4の要素を含む。MITライセンス。