splice copies data between two file descriptors of which one must be a pipe. Effectively, this is equivalent to a userland function that performs a read/write operation to and from a kernel-owned buffer.
0
votes
0answers
69 views
array element removed twice
i have a problem to delete an element in array. every time i pass into the delete procedure, the array has reduced by something. i don't know in which line the element removed. please help me to check ...
1
vote
3answers
38 views
how to add a random string between filename and file extension in JavaScript in one line?
I want to add a hashstring to file name, so I'm trying to rename the string.
This is what I have:
var x = "puh.jpg";
var y = x.split(".");
y.splice(1,0,"foo");
var z = y.join(".");
console.log(z)
...
6
votes
1answer
91 views
Clojure: Idiomatic Way to Insert a Char in a String
I have a string in Clojure and a character I want to put in between the nth and (n+1)st character. For example: Lets say the string is "aple" and I want to insert another "p" between the "p" and the ...
2
votes
2answers
41 views
Why am I getting this output from this simple splice command?
I have a small issue with understanding why I'm getting this output.
var arr = ["a", "b", "c", "d", "e", "f"];
arr.splice(2,0,"1");
console.log(arr);
var arr2 = ["a", "b", "c", "d", "e", "f"];
...
0
votes
1answer
36 views
django (or wsgi) chain stdout from subprocess
I am writing a webservice in Django to handle image/video streams, but it's mostly done in an external program. For instance:
client requests for /1.jpg?size=300x200
python code parse 300x200 in ...
0
votes
2answers
84 views
Remove items from array with splice in for loop
I want to implement a kind of jQuery live search.
But before sending the input to the server I'd like to remove all items in my array which have 3 or less characters (because in the german language, ...
2
votes
2answers
71 views
How to reduce the size of vector when removing elements from it?
I'm writing a program which memory is limited base on input size. Say the input size is 1000, then I store them in a vector of size 1000. Later when I'm processing the data in this vector, whenever an ...
0
votes
2answers
41 views
Issue with JavaScript splice() method
I'm getting mixed results by using the splice method in JS with the following example:
var test = function(x){
var f = x.toString().length;
var bb = [];
for ...
2
votes
3answers
57 views
Trouble removing elements from multidimensional array using for loop (javascript)
I'm banging my noob head against the wall on this one...
I have the following code:
var guns2 =
[
["Model 17", "Glock"],
["Model 19", "Glock"],
["PPQ", "Walther"],
["P2000", "HK"],
["Model 92", ...
0
votes
2answers
50 views
Removing element from jQuery array gives undefined error
I have an Array in jQuery. I would like to remove all elements that have a certain value in a selected field. When I do a loop and splice, I get an error.
$.each(arr,function(idx,val) {
if ...
1
vote
2answers
44 views
.splice() doesn't shorten my array completly
I have an array with Strings, if there is nothing written in the String I want to remove it from the array with .splice().
Somehow it does not get all empty entries. If there are 2 empty entries ...
0
votes
2answers
99 views
Convert one array to another with minimal quantity of splices
Let's take, for example, this array
ar = [6,3,5,1,2]
I want to convert it to another array and I might use only two operations - insert item at specific position (splice(i,0,item)) or remove item ...
0
votes
6answers
165 views
Remove the last one array like [[“1”]] by .splice() , why output = [[]] not []?
var arr=[["1"]];
arr[0].splice(0,1);
// arr = [[]]
Why I can't remove the last one array to blank ?
I need arr = [] not [[]] when removed and sub-array (array in array) is blank
Demo : ...
1
vote
1answer
55 views
Get correct index with Splice()
I'm attempting to delete items from my AngularJS view. From the view, I'm passing the index & the ID. In the JS controller, I splice(index) from the AngularJS array/model. And I pass the ID to a ...
0
votes
3answers
42 views
array.splice not working correctly in javascript
I'm writing a simple sudoku solver, which takes an array of numbers 1-9 and sets them to null if they are not possible for that cell. An example is a cell where the answer can only be a 5, so all the ...
1
vote
2answers
129 views
Splicing new array of items onto existing Knockout observable array causes binding errors
I have a knockout observable array being populated with some initial values when the web page loads, and I want to add to the observable array via splice method as the user interacts with the page. ...
-1
votes
3answers
54 views
Remove a string from string array
I am very beginner in JavaScript.
I have an string array like this : 123,432,123,543,123,123
I want to remove the 3dr number from this string.
I have found following function to remove a text value ...
0
votes
1answer
35 views
Splice array within array
How can I splice an array within another array?
I'm trying to create a game for kids in my class. Some kind of a trivia history question creator. How to splice the MasterArray so that I would get ...
0
votes
2answers
92 views
How can I go about splicing a string to create new strings only using a part of the last string?
So for a homework assignment, I have to slice a string like
GENE="ATGAGTGATGATGTA
And create new words (GENE2, GENE3, GENE4, etc...)
This is the assignment:
Starting with the word ...
1
vote
2answers
59 views
Splice multiple arrays iteratively
What is the fastest way to iteratively splice multiple arrays as you go along - without too much performance hit? I imagine it being something like the syntax below but it doesn't quite work.
I'd ...
0
votes
0answers
74 views
Interconnect UDP sockets with zero-copy
I want to 'interconnect' two UDP sockets as efficiently as possible: I don't want to read() everything from socket A to userspace and then write() it to socket B as this is not very effficient.
I was ...
0
votes
5answers
97 views
Javascript: Splicing all instances of element in Array
I am trying to splice all instances of some defined value from an array.
filterfunc: function(anyArray){
for(var i = 0; i <anyArray.length; i++){
var v = anyArray[i];
...
0
votes
5answers
99 views
splice array of arrays
I have array of arrays:
Array
(
[0] => "title"
[1] => Array
(
[0] => a
[1] => b
[2] => c
)
[2] => Array
(
...
1
vote
2answers
25 views
js. splice returns removed item?
I am having problem of understanding splice and I want to have help.
Please check the jsfiddle.
http://jsfiddle.net/fantill/TbpWf/1/
value = "c, a, b"
value = value.split(',').splice(1, ...
1
vote
2answers
70 views
Split array into overlapping chunks (moving subgroups)
There is a great question on how to split a JavaScript array into chunks. I'm currently using this for some statistical methods I'm writing and the answer that I'm using is as follows (although I ...
-1
votes
3answers
38 views
javascript splice skipping element- why this behaviour
I was working with splice within a nested for loop and I came across a behaviour I could not understand.
var a = [0, 1, 2, 3, 4];
for (b in a) {
console.log(a);
for (c in a) {
...
1
vote
2answers
28 views
Jquery and Get traversing API
Is there a simple way to get a node list (including the given node) matched by a query with Jquery?
I thought about using the .find method as following:
var getNodes = function(dom, query){
var ...
0
votes
0answers
52 views
How can I write spliceAll in Linux?
I want to drain a pipe by pushing all its data to a socket using the splice system call on Linux.
My current attempt is:
ssize_t splice(int i, loff_t* io, int o, loff_t* oo, size_t l, unsigned int ...
0
votes
1answer
37 views
Getting a random entry from an array, printing it and deleting in with splice to avoid duplicates
I have the following function to generate country names for a quiz. I want to generate a random name from the array and show it on the screen and then delete it so that I don't have duplicate ...
4
votes
2answers
73 views
Is it possible to insert an element into the middle of an array in a MongoDB document?
Say I have a document in a mongo DB that looks like this:
{
pages: [
{
elements: [
{id:1},
{id:2},
{id:3}
]
...
3
votes
4answers
73 views
Is there a way to use Array.splice in javascript with the third parameter as an array?
I'm attempting the following:
var a1 = ['a', 'e', 'f']; // [a, e, f]
var a2 = ['b', 'c', 'd']; // [b, c, d]
a1.splice(1, 0, a2); // expected [a, b, c, d, e, f]
// ...
0
votes
5answers
77 views
Javascript: Delete entire object if one property has certain value
I have an Array of objects that looks like this but a little bigger:
var total = [{ cost="6.00", descrip="tuna"},{ cost="5.50", descrip="cod"}];
I need a way of deleting specific full objects ...
0
votes
3answers
46 views
Populate JavaScript array in middle of each value
I am attempting to populate array:
var array2 = ["a", "b", "c"];
With some random number/value, so that the value separates each original value.
However, using a for loop like this:
for (var am = ...
4
votes
1answer
137 views
How to do range splice in constant time with std::forward_list?
I want to splice the range [first, last], with both endpoints inclusive. I have iterators to the element before first and to last. I could do it with splice_after() but only in linear time.
I belive ...
8
votes
2answers
178 views
Why is splicing an entire list or a range linear for std::forward_list?
Splicing a range from one list to another can be accomplished in constant time, at the expense of making size()'s complexity linear.
C++11 has changed that in case of std::list by requiring size() to ...
0
votes
2answers
69 views
javascript splice() odd function
I like to do recursive scripts like:
var slask="http://www.vskg.se/a-konstnarer/kn_1180/t_bild1.jpg?1357162516228";
slask.split("/").splice(3,50).join("/");
to remove http://www.vskg.se/ and this ...
2
votes
4answers
114 views
Python: How to slice a list to a certain value
I was wondering if there is way to slice an existing list to a certain number that is most likely not in the list. For example, suppose I have:
primes = [2,3,5,7]
Now I want to test the number 11 ...
1
vote
4answers
162 views
Javascript - How to delete items from an array at given indices [duplicate]
Possible Duplicate:
Strip/remove values in array at certain indices
How do I remove a set of elements from an array at given indices using Javascript.
Say I have an index array:
var ...
0
votes
2answers
104 views
Javascript splice method remove values from two arrays
Javascript (using jQuery):
var paragraphs = [
['This is my first paragraph content of the first array', 'This is my second paragraph content of the first array', 'This is my third paragraph ...
2
votes
4answers
80 views
Functioning of splice() in cpp
How does splice works?
I read about it in http://www.cplusplus.com/reference/list/list/splice/
I couldn't understand this part from the code in the above link:
mylist1.splice ( mylist1.begin(), ...
4
votes
1answer
82 views
forward_list::splice_after( const_iterator pos, forward_list& other, const_iterator i ) functionality
I'm reading different interpretations of the way this function should work.
cplusplus.com says that this function should "move the element directly AFTER i".
Yet cppreference.com says that it ...
0
votes
1answer
56 views
Outputting member variables when data is spliced c++
Hello I currently face a problem were I want to output data from 2 separate classes, one is a base class and one is a derived class, I want to overload the << operator to output all the data at ...
1
vote
1answer
79 views
jqm 1.2 listview - dynamically append new <li> element to top
does anyone know a method to append a new element to the top of a listview ?
The normal method of append adds the element to the end of a listview.
Maybe there is a method to (reverse / append / ...
2
votes
1answer
48 views
Function fallocate() & splice() from FreeBSD
I needed to implement add and remove blocks in the middle of the large file - "hole punching" I can't find an analogue functions fallocate() and splice() under FreeBSD.
0
votes
3answers
237 views
AS3 Splice(:ed) and wants to “re index”?
Ok, so I have a array like this.
myArray:Array []
myArray.push(Object) // x 4.
I have 4 objects in my array. Then I splice the second one. Leaving me with a array that looks like this. 1,3,4. ...
1
vote
5answers
980 views
Push Functions into an Array - Loop through and Splice?
Using Javascript i need to be able to:
1: Push a certain amount of the same function (with a different parameter in each) into an array.
2: Then run each function one by one (for this example just ...
1
vote
1answer
102 views
Javascript delete than splice
Hi guys I am working on javascript project where I have 2 arrays 1. elements 2. elementsOrder ; elementsOrder array contains the names of each element, and elements array contains all properties of ...
2
votes
1answer
421 views
Javascript Splice not working correctly
When I do this:
var testArray = ["a","b","c"];
console.log(testArray);
console.log("size:" + testArray.length);
I this this printed in my console:
["a", "b", "c"]
size:3
Which is good. But now ...
2
votes
1answer
548 views
Image Spliced into tiles with animation - iOS
I'm trying to splice an image and then have a transition to next one something like this? Any suggestions on where to start from? Is it possible to splice the images into small tiles and animate them ...
3
votes
1answer
737 views
VBA splicing cells separated by comma
I am really new to VBA coding.
Problem I have is this:
B60, D60, F60, H60 (etc) cells have different values in this format: x, y, z
(x, y and z can be numbers 0-10)
I'd like to splice this so it ...





