The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
91 views

How to remove the last character from an array?

Is there a way of removing the very last character from an array? Just to be clear, I am not asking for every entry in the array to have its last character removed, only the very last entry into the ...
1
vote
1answer
59 views

Qt5 Delete the suffix of a filepath

I'm trying to figure out the QString::lastIndexOf and QString::chop to delete a suffix off a file, so I can add one myself. However, I get weird output that doesn't make sense to me. Here's my test ...
0
votes
3answers
104 views

kohana orm retrieve only specified amount of characters from text column

Currently I am writing a website using Kohana framework 3.3. Today, I wanted to create subpage where user would be able to browse news, however I encountered a small problem with Kohana ORM. I would ...
-2
votes
1answer
47 views

Chopping a string by missing two subsequent positions at a time in perl

I have a string (say ABCDEABCDEABCDEABCDEABCDEABCD) and I want it to chop at every occurrence of E, skipping previous 2 positions at a time in one round. for ex. positions of 'E' in the above ...
0
votes
2answers
943 views

VB 2010 chop off part of string and get string up to next '\' in filepath

I cannot find a solution as how to chop off part of a string(filepath) and use what's left to get another string. For example: if I have filepath: Q:\2456_blah_blah\file.txt and I want to put this ...
6
votes
2answers
204 views

mysql - select match the most characters

I don't know what function this is called but I am trying to select a row that matches/has the most characters for the output. Here is what I have tried. select * from table where title like ...
0
votes
1answer
160 views

ffmpeg - automatically chopped?

I have an ISO file that I would like to encode it out to mp4 in parts so it's easier to upload to youtube. I am not sure how it handles with chapters etc in this iso file. I have tried ffmpeg -i ...
3
votes
5answers
100 views

Why is my word chopped in half?

I am trying to chop text to a fixed length, but I don't want to chop words at half, so I need to do something like this: function fixedLength(str, len, bol) { var i, l = str.length, left = 0, ...
0
votes
2answers
236 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
2answers
2k views

Get filesize with -s in Perl

I am trying to find the size of a file using the -s operator. It 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 ...
7
votes
4answers
8k 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 ...
95
votes
7answers
110k 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?