الگو:هگزا به دسی
ظاهر
(تغییرمسیر از الگو:Hex2dec)
0
این الگو از ویژگی و دستورهای پیچیده استفاده میکند.
توصیه میشود پیش از ویرایش الگو با دستورهای الگو و توابع تجزیهکننده آشنا شوید. اگر ویرایشتان باعث بروز مشکلات غیرمنتظره شد، خواهشمند است آن را بهسرعت برگردانید، زیرا ممکن است این الگو در شمار زیادی صفحه ظاهر شود. بهیاد داشته باشید که شما میتوانید آزمایش انجام دهید، اما باید همهٔ بهسازیها را پیش از آنکه در اینجا اعمال کنید، در صفحهٔ تمرین عمومی الگو یا فضای کاربریتان بیازمایید. |
Usage
[ویرایش]Works for all values in the range 0x00–0xFFFFFFFF.
- {{hex2dec|0x0000}} → 0
- {{hex2dec|0xA0}} → 160
- {{hex2dec|0x7C0}} → 1984
- {{hex2dec|0xFFFF}} → 65535
- {{hex2dec|0x845FED}} → 8675309
- {{hex2dec|0x75BCD15}} → 123456789
- {{hex2dec|0xDEADBEEF}} → 3735928559
- {{hex2dec|0xFFFFFFFF}} → 4294967295
The template also accepts lowercase and padded hexadecimals with or without the prefix "0x":
- {{hex2dec|0xa0}} → 160
- {{hex2dec|a0}} → 160
- {{hex2dec|0x00A0}} → 160
- {{hex2dec|A0}} → 160
Technical details
[ویرایش]This template works in conjunction with the following subtemplates:
- {{Hex2dec/main}}: does the actual multiplication and addition to create a decimal number.
- {{Hex2dec/1}}: returns the length of the hexadecimal string.
- {{Hex2dec/2}}: converts individual hexadecimal characters into their decimal equivalent.