Skip to content

Commit

Permalink
chore(outline): Update outline
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Mar 20, 2017
1 parent fc338aa commit 1759771
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions source/OUTLINE.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,21 +275,29 @@
- `===`で文字列を比較する
- また`>`は辞書順
- 文字列の検索
- 固定文字列の検索
- `対象文字列.startsWith("検索文字列")`: 先頭にあるか
- `対象文字列.endsWith("検索文字列")`: 終端にあるか
- `対象文字列.includes("検索文字列")`: 含むか
- `対象文字列.indexOf("検索文字列")`: インデックス
- 部分文字列の検索
- インデックス
- `対象文字列.indexOf("検索文字列")`: インデックス
- 真偽値
- `対象文字列.startsWith("検索文字列")`: 先頭にあるか
- `対象文字列.endsWith("検索文字列")`: 終端にあるか
- `対象文字列.includes("検索文字列")`: 含むか
- 正規表現の検索
- `String#startsWith`: `/^検索文字列/.test(対象文字列)`
- `String#endsWith`: `/検索文字列$/.test(対象文字列)`
- `String#includes`: `/検索文字列/.test(対象文字列)`
- `String#indexOf`: `対象文字列.search(/検索文字列/)`
- 真偽値
- `String#startsWith`: `/^検索文字列/.test(対象文字列)`
- `String#endsWith`: `/検索文字列$/.test(対象文字列)`
- `String#includes`: `/検索文字列/.test(対象文字列)`
- インデックス
- `String#indexOf`: `対象文字列.search(/検索文字列/)`
- 詳細な情報
- `String#match`と`String#exec`
- 文字列と正規表現の違い
- 意図の表明
- コメントが必要
- 正規表現にはコメントが必要
- 文字列の置換/削除
- `String#replace`を使う
- 削除は空文字への置換
- 第二引数の関数を使った高度な置換
- [コラム] 文字列と正規表現
- Symbolで同じ処理を共有している
- 文字列の組み立て
Expand Down

0 comments on commit 1759771

Please sign in to comment.