0
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 3 years have passed since last update.

メタキャラクタ ってなに?

0
Posted at

勉強前イメージ

@とか/とかのイメージ。
どれがそうで、どれがそうでないとかはわからん

調査

メタキャラクタ とは

特別な意味や役割を持つ文字列のことで、プログラミング言語やマークアップ言語の使用で定められています。

例えば、シェルでは以下のようなコマンドを打つときがあります。

  • は .txtで終わるファイルの一覧を指しますが、これがメタキャラクタです。
ls -al *.txt

また、htmlなどでは以下のような<>で囲われたものは要素の開始・終了を意味します。

<h1>hello world</h1>

このように各言語で定められている特別な意味や役割を持つ文字列を メタキャラクタ といいます。

勉強後イメージ

今更話。
意識せずに使ってた感ある....

参考

0
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
0
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?