Sunday, February 3, 2019

Re: hexa numbers operations : masking, shifting

On Monday, February 4, 2019 at 12:03:40 AM UTC+13, niva...@gmail.com wrote:
>
> Can I do hexa numbers operations like shifting and masking in vimscript ?

See and(), or(), and xor()

:echo and(0x0103, 0x00ff)

For shifting, multiplying or dividing by 2 would work.

:echo 0x0103 / 256

Regards, John Little

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: