1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

連続する文字を1文字にしたい

Posted at

tr -sを使う

ex:


$ echo "//test/awa//wawa" | tr -s /
/test/awa/wawa

楽ちんですね

今までsedでやってました

これだけだと寂しいので他の使い方を書いておこう

# 1をxに置換する
$ echo "12341234" | tr 1 x
x234x234

# 1と3を消す
$ echo "12341234" | tr -d 13
2424

# 範囲指定
$ echo "12341234" | tr -d 1-3
44

# 1以外をxに置換(改行も置換されるのでちゅうい)
$ echo "12341234" | tr -c 1 x
1xxx1xxxx
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?