The needle tag has no wiki summary.
0
votes
1answer
25 views
Find multiple haystacks between the same needle
I am currently trying to develop an application that obtains data from a certain webpage.
Lets say this webpage has the following content:
<needle1>HAYSTACK 1<needle2>
...
0
votes
3answers
39 views
Using 2 or more needles when using strpos [duplicate]
Im running strpos on a <a> tag to see if it contains either one of two urls.
At the moment im using this bellow - how would i set it to check if - tumblr.com OR google.com were present ?
...
0
votes
3answers
94 views
PHP - Most Efficient Dictionary Code
I'm using the following code to pull the definition of a word from a tab-delimited file with only two columns (word, definition). Is this the most efficient code for what I'm trying to do?
<?php
...
3
votes
4answers
57 views
Array file isset Incorrectly Returning False
I have the following PHP code:
$haystack = file("dictionary.txt");
$needle = 'john';
$flipped_haystack = array_flip($haystack);
if (isset($flipped_haystack[$needle])) {
echo "Yes it's there!";
}
...
0
votes
1answer
29 views
Check if value 50% or more is matched with the needle in haystack in a multidimensional Array (PHP)
I want to check if a value is 50% or more identical in a multidimensional Array as the "needle" i put in.
I got a function that can check if a value is identical in a multidimensional array:
...
1
vote
1answer
369 views
Rotating a UIImageView in iOS
I'm relatively new to iOS programming, and want my first project to include a gauge with rotating needle. So here's what I did...
Created a new single view based project.
Dragged a UIImageView onto ...
3
votes
3answers
173 views
Variable Length Needle in Haystack (Python)
I have a function designed to find errors in an application's search capabilities, which generates a variable-length search string from the non-control UTF-8 possibilities. Running pytest iterations ...
0
votes
1answer
259 views
Is there a limit on the length of the needle in the PHP strpos function?
My questions are simple:
Is there a limitation as to what the length of a strpos needle can be?
If so, is there a way to get around it?
It seems like my longer needles don't trigger a position ...
2
votes
3answers
592 views
Overcoming needle haystack confusion in PHP
What is the most practical way of overcoming needle haystack confusion in PHP?
Here $needle is the first argument
bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )
Here ...
0
votes
2answers
116 views
Needle search in array returns 0 if not found
I'm using this function to search the (highest) array key when a value of userid is found:
function array_search_value($needle,$haystack) {
foreach($haystack as $key => $value) {
...
2
votes
5answers
199 views
Finding position of all needles in haystack
I'm trying to find the position of all needles in a haystack:
$haystack = 'one twoo two one postpone twool';
$needles = array('one', 'two', 'three');
foreach ($needles as $needle) {
if ...
-1
votes
1answer
101 views
Find the number of needles in a haystack
I need to find the number of times a needle appears in a haystack. Until this point I've put together the following code:
<?php
$haystack = 'http://www.google.com';
$needle = 'a';
$contents = ...
0
votes
1answer
418 views
Android Gauge Animation Help
I am new to android and i could really use some help here. I have two images both are PNG one represents a gauges and the second is the needle. I am trying to animate the needle according to speed ...
0
votes
1answer
509 views
Define multiple needles using stripos
How can i define multiple needles and still perform the same actions below. Im trying to define extra keywords such as numbers, numerals, etc... as of now i have to create a duplicate if loop with the ...
2
votes
5answers
2k views
PHP array_search
Is there any function which will accomplish the equivalent of array_search with a $needle that is an array? Like, this would be an ideal solution:
$needle = array('first', 'second');
$haystack = ...
2
votes
1answer
213 views
Needle is in haystack but barn door is jammed shut!
The test below returns false ($pos = 0) when $haystack = "my keyword" and $needle = "my keyword", presumably because my stripos test returns 0 since there is no empty space in the barn.
What do I ...
0
votes
4answers
211 views
PHP: How do I check the contents of an array for my string?
I a string that is coming from my database table say $needle.
If te needle is not in my array, then I want to add it to my array.
If it IS in my array then so long as it is in only twice, then I ...
21
votes
3answers
4k views
Ruby dependency injection libraries
I've been looking at some Ruby dependency injection libraries. In particularly, I checked out Needle and Copland. They've been around for quite awhile, yet not a lot of usages.
What are some of ...