manipulating the string

Guest
hi all,

i am new to VHDL. i am trying to calculate the string length that to
taking that string from a file and then calculating its length.
could anybody help me out.

thanks in advance
 
On Jun 23, 3:17 am, rahul.bajai...@gmail.com wrote:
hi all,

i am new to VHDL. i am trying to calculate the string length that to
taking that string from a file and then calculating its length.
could anybody help me out.

thanks in advance
Write the body for a function of the following form

function strlen(s: string) return natural is
begin
-- Put your code here
end function strlen;
 

Welcome to EDABoard.com

Sponsor

Back
Top