Hello,
I have a string str=“144.104”.
I want the output as 144.
The number before the decimal digit should be fetched.
How do i get it??
Hello,
I have a string str=“144.104”.
I want the output as 144.
The number before the decimal digit should be fetched.
How do i get it??
str.Split("."C)(0)
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.