Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
6answers
36k views

Javascript chop/slice/trim off last character in string

I have a string 12345.00 would like it to return 12345.0 I have looked at trim but looks only to trim whitespace and slice which I don't see how this would work. Any suggs?
2
votes
3answers
2k views

MySQL/SQL retrieve first 40 characters of a text field?

How can I retrieve a text field from mysql db table, but not the entire text, just the few 40 or so characters. Can this be done in sql or do I need to do it using php? basically what I am trying to ...
0
votes
2answers
102 views

In perl, how to split a string in this desired way?

I have a string str a\tb\tc\td\te I want the 1st field value a to go in a variable, then 2nd field value b to go in other variable, then both c\td to go in 3rd variable and last field value e to go ...
0
votes
3answers
198 views

Get filesize with -s in Perl

I am trying to find the size of a file using the -s operator. I looks like this: my $filesz = -s $filename I tried lots of various way, but it can not get this size. However, if I give static ...