|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* translation into ja
original URL:
https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/Test_your_skills:_Math
* [l10n-ja]Correcting after the review #911
I corrected the places pointed out in the way below:
----------------
<Find the places using regular expression>
英数字+全角
[0-9a-zA-Z][^\x01-\x7E]
全角+英数字
[^\x01-\x7E][0-9a-zA-Z]
英数字>+全角
[0-9a-zA-Z]>[^\x01-\x7E]
全角+<英数字
[^\x01-\x7E]<[0-9a-zA-Z]
全角数字
[0-9]
中黒
・
----------------
<Rules I used besides above>
「行頭」は半角空けない。
「、」「。」の前後は半角空けない。
「?」「!」の後は半角空ける。
----------------
|