【SystemVerilog】SV 数据操作及数制转换(atohex)

文章介绍了多个用于处理字符串的函数,如len()计算长度,putc()替换字符,getc()获取ASCII码,toupper()和tolower()转换大小写,compare()和icompare()进行比较,以及substr()截取子串。此外,还提到了将字符串转换为不同进制数值的atoi(),atohex(),atooct(),atobin(),以及将字符串转化为浮点数的atoreal()函数。
摘要由CSDN通过智能技术生成

记录几个比较常用的数据/字符串操作函数

字符串函数:

  1. len()

function int len():

str.len()返回字符串的长度,也就是字符串中字符的数目(不包括任何终结字符)。

如果str是"",那么str.len()返回0

  1. putc()

task putc(int i, string s)

task putc(int i, byte c)

str.putc(i, c)将str中的第i个字符替换成指定的integral值;

str.putc(i, s)将str中的第i个字符替换成s中的第一个字符;

s可以是赋值为一个字符串的任何表达式;

putc不会改变str的尺寸,如果i < 0或i >= str.len(),那么str不会发生改变;

注意:str.putc(j, x)在语义上等价于str[j] = x。

  1. getc()

function int getc(int i)

str.getc(i)返回str中的第i个字符的ASCII码值;

如果i < 0或i >= str.len(),那么str.getc(i)返回0;

注意:x = str.getc(i)在语义上等价于x = str[j]。

  1. toupper()

function string toupper()

str.toupper()返回一个字符串并将str中的字符转换成大写形式;

str不会发生变化;

  1. tolower()

function string tolower()

str.tolower()返回一个字符串并将str中的字符转换成小写形式;

str不会发生变化;

  1. compare()

function int compare(string s)

str.compare (s)将str与s进行比较,就像ANSI C strcmp函数一样,并且包含嵌入的空字节

  1. icompare()

function int icompare(string s)

str.icompare(s)将str与s进行比较,就像ANSI C strcmp函数一样,但这种比较是大小写敏感的并且包含嵌入的空字节;

  1. substr(int i, int j)

function int substr(int i, int j)

str.substr (i, j)返回一个由str中位置i到位置j之间的字符组成的一个新的字符串;

如果i < 0, j < i, 或者j >= str.len(),那么substr()返回""(空字符串)

  1. atoi(), atohex(), atooct(), atobin()

function integer atoi()

function integer atohex()

function integer atooct()

function integer atobin()

str.atoi()返回一个str中由ASCII码字符表示的进制数。例如:

str = “123”;

int i = str.atoi(); // 将i赋值为123

在转换过程中会扫描所有的前几位阿拉伯数字以及下划线字符(_),只要遇到任何其它字符或到达字符串的结尾则停止扫描。它不会分析整数文本的完整语法(符号、尺寸、撇号、基)。

str.atohex()将字符串解释成十六进制数;

str.atooct()将字符串解释成八进制数;

str.atobin()将字符串解释成二进制数;

下面是我实际的一个应用例子:

  1. atoreal()

function real atoreal()

str.atoreal()返回一个str中由ASCII码字符表示的实数。

转换过程会分析实数常量的Verilog语法。只要它遇到与这个语法不一致的任何字符,或到达字符串的尾部则停止扫描。如果没有遇到阿拉伯数字则返回0。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值