インライン リテラル (直接解釈)¶
Inline Literals
sample¶
source:
This text is an example of ``inline literals``.
この文は\ ``インライン リテラル``\ の例です。
The regular expression ``[+-]?(\d+(\.\d*)?|\.\d+)`` matches
floating-point numbers (without exponents).
正規表現 ``[+-]?(\d+(\.\d*)?|\.\d+)`` は浮動小数に合致します。
(指数を除く)
output:
This text is an example of inline literals.
この文はインライン リテラルの例です。
The regular expression [+-]?(\d+(\.\d*)?|\.\d+) matches floating-point numbers (without exponents).
正規表現 [+-]?(\d+(\.\d*)?|\.\d+) は浮動小数に合致します。 (指数を除く)