Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
435 views

strpos() with multiple needles?

I am looking for a function like strpos() with two significant differences: To be able to accept multiple needles. I mean thousands of needles at ones. To search for all occurrences of the needles ...
3
votes
3answers
232 views

PHP: Search in textfile after specific phrases / words and output

I’m trying to make a small php script to automate some work processes. What the script has to do is read a file (approximately 10-20kb per file). Then I need to search the file for some specific ...
3
votes
4answers
75 views

Tagging phrases in paragragh

I am using PHP and I am looking to create links within my text to other sections of the site so for example: I fell into the media industry aged 30, when David Mansfield, now on the board of ...
3
votes
4answers
724 views

Use preg_match() to find start/stop positions of a substring matching a pattern

I want to copy a substring of a string using PHP. The regex for the first pattern is /\d\|\d\w0:/ The regex for the second pattern is /\d\w\w\d+:\s-\s:/ Is it possible combining preg_match with ...
3
votes
5answers
1k views

php 5 strpos() difference between returning 0 and false?

if(strpos("http://www.example.com","http://www.")==0){ // do work} I'd expect this to resolve as true, which it does. But what happens when I do if(strpos("abcdefghijklmnop","http://www.")==0){// ...
3
votes
5answers
458 views

Sort search results from MySQL by the position of the search query in the string using PHP

I want my search results to be in order of string position from smallest to greatest. For example, searching for "banana" returns: Babyfood, plums, bananas and rice, strained Bananas, dehydrated, ...
3
votes
4answers
5k views

SQL Server: any equivalent of strpos()?

I'm dealing with an annoying database where one field contains what really should be stored two separate fields. So the column is stored something like "The first string~@~The second string", where ...
2
votes
1answer
65 views

PHP strpos not working

I've always had problems with strpos, I understand the num v. boolean issue, but I can NOT get this working. The $cur_key value is something like "page=>name"... $pos = strpos($cur_key, "=>"); if ...
2
votes
3answers
52 views

Determine if a SQL query alters the database structure

I'm trying to find out if a string contains certain SQL commands that alter the database by: creating new tables deleting existing tables creating new table columns deleting existing table columns ...
2
votes
3answers
96 views

str_replace with strpos?

The str_replace function with a strpos checking can avoid extra work? METHOD 1 ... if (strpos($text, $tofind) !== FALSE) $text = str_replace($tofind, $newreplace, $text); ... METHOD 2 ... $text ...
2
votes
6answers
84 views

Finding words in a string

Can anyone suggest how I would do this: Say if I had the string $text which holds text entered by a user. I want to use an 'if statement' to find if the string contains one of the words $word1 $word2 ...
2
votes
4answers
139 views

Foreach strpos problem. Find string in another string

I'm trying to get this script to work. The idea is that if the input string ($query) doesn't start with '/t' AND contains one of the $trigger words, an $error is set. I can't get this to work and ...
2
votes
5answers
1k views

Which method is preferred strstr or strpos?

I noticed a lot of developers are using both strstr and strpos to check for a substring existence. Is one of them preferred and why ?
2
votes
2answers
126 views

Why use iconv_strpos instead of strpos?

In contrast to strpos(), the return value of iconv_strpos() is the number of characters that appear before the needle, rather than the offset in bytes to the position where the needle has been ...
2
votes
3answers
80 views

stripos returns false when special characters is used

I am using the stripos function to check if a string is located inside another string, ignoring any cases. Here is the problem: stripos("ø", "Ø") returns false. While stripos("Ø", "Ø") returns ...
2
votes
2answers
526 views

strpos() in Ruby?

In PHP there's a useful strpos function that finds the position of first occurrence of a string. Is there a similar way to do this in Ruby?
2
votes
4answers
470 views

Find whole word with strpos()

Hello people :) I'm trying to use strpos() to find whole words in a sentence. But at the moment, it also find the word if it just are a part of another word. For example: $mystring = "It's a ...
2
votes
3answers
421 views

How to Find Next String After the Needle Using Strpos()

I'm using PHP strpos() to find a needle in a paragraph of text. I'm struggling with how to find the next word after the needle is found. For example, consider the following paragraph. $description ...
2
votes
1answer
163 views

Search for a specific string within another string with PHP

I need to search a string for any occurances of another string in PHP. I have some code that I've been playing with, but it doesn't seem to be working. Here is my code: while (list($key, $val) = ...
1
vote
4answers
50 views

What is the best way to check a certain input in php and proceed if it meets the required format?

I got lost in a using strpos() and ltrim()'s. Would anyone be able to help me out with my problem? I'd want the page to only accept inputs that start with "A" or "B" then is immediately followed by an ...
1
vote
2answers
82 views

stripos with mutli dimensional arrays

I am trying to work out a php function to search the referring page for terms and then perform a function based on the existence of those terms. Creating the basic code wasn't an issue, but with a ...
1
vote
4answers
85 views

Extract value from url in php

I've a URL similar to this: http://somethinfs.com/folder/134039/the_title_of_somethings.html http://somethinfs.com/folder/184738/the_title_of_somethings_else.html From this URL, I need to extract ...
1
vote
1answer
94 views

PHP use str_replace, substr and strpos all together

What I am trying to do is to convert url of a video on youtube/vimeo return a new url that can be embed into an iframe and automate video embed codes. This is working like a charm. $url = ...
1
vote
3answers
58 views

Problem in function strpos

I want search one string and get related values, but in test the function, in each times search words(Title Or Would Or Post Or Ask) displaying(give) just one output Title,11,11 !!!! how can fix it? ...
1
vote
5answers
68 views

Find one string and get related values

I have several strings, how can I search the first value and get other values from it? print_r or ?: Array( [0] => Title,11,11 [1] => Would,22,22 [2] => Post,55,55 [3] => Ask,66,66 ) ...
1
vote
2answers
121 views

PHP strpos() crashing script

I have a PHP script that looks for links on a page that it downloads with CURL_MULTI functions. The downloading is fine and I get the data, but my script randomly crashes when I encounter a page that ...
1
vote
2answers
115 views

PHP Cant search for specific words in an array created from file

I have been trying to extract specific words from an array which was created from a text file using file() function in php. The text file sample.txt is like this: A registration has been received. ...
1
vote
2answers
155 views

How to make strpos non case sensitive

How can I change the strpos to make it non case sensitive. The reason is if the product->name is MadBike and the search term is bike it will not echo me the link. My main concern is the speed of ...
1
vote
2answers
59 views

Catch a variable string after a prefined needle with strpos()

I have a tricky problem to solve. I already got a push in the right direction by this question and answers: How to Find Next String After the Needle Using Strpos() But my problem is a bit more ...
1
vote
2answers
134 views

PHP strpos problem

I have a script that's fetching a page from a site using cURL and im trying to cut it up row by row then extracting what i need and removing that row. The problem is, sometimes it will give me the ...
1
vote
4answers
147 views

PHP - strpos and string in string searches - what am I doin wrong?

I have a comma delimited string and I need to be able to search the string for instances of a given string. I use the following function: function isChecked($haystack, $needle) { $pos = ...
1
vote
4answers
147 views

In PHP, if I find a word in a file, can I make the line that the word came from into a $string

I want to find a word in a large list file. Then, if and when that word is found, take the whole line of the list file that the word was found in? so far I have not seen any PHP string functions to ...
1
vote
3answers
300 views

PHP strpos() of “\\\\\\\\r\\\\\\\\n” characters

I have a text in MySQL database that is requested in "$description" and I would like to know if \\\\\\\\r\\\\\\\\n is present in the description. So i got: if(strpos($description, ...
1
vote
2answers
46 views

strpos problem: getting value UBLIC returned

I am making a class to open a webpage and store the href values of all outbound links on the page. For some reason it works for the first 3 then goes wierd. Below is my code: class Crawler { var ...
1
vote
3answers
998 views

PHP substr after a certain char, a substr + strpos elegant solution?

let's say I want to return all chars after some needle char 'x' from: $source_str = "Tuex helo babe". Normally I would do this: if( ($x_pos = strpos($source_str, 'x')) !== FALSE ) $source_str = ...
1
vote
2answers
86 views

PHP strpos(), echoing instances found

Using the strpos() function in PHP, how can I echo what strpos() has found? All items that it has found. Thanks
1
vote
3answers
344 views

selecting an array key based on partial string

I have an array and in that array I have an array key that looks like, show_me_160 this array key may change a little, so sometimes the page may load and the array key maybe show_me_120, I want to now ...
1
vote
2answers
109 views

strpos in Emacs Lisp

Is there a native Emacs Lisp function that behaves like strpos() in PHP? It should return the position of first occurrence of the given string in current buffer. Function search-forward is nice, but ...
1
vote
2answers
679 views

str_replace() and strpos() for arrays?

I'm working with an array of data that I've changed the names of some array keys, but I want the data to stay the same basically... Basically I want to be able to keep the data that's in the array ...
1
vote
3answers
132 views

What exactly does this PHP code do?

Alright, my friend gave me this code for requesting headers and comparing them to what the header should be. It works perfectly, but I'm not sure why. Here is the code: $headers = ...
1
vote
2answers
435 views

Insert string between two markers

I have a requirement to insert a string between two markers. Initially I get a sting (from a file stored on the server) between #DATA# and #END# using: function ...
1
vote
2answers
151 views

PHP - Checking whether a string exists in an entire array?

Basic array question: $string = "The quick brown cat"; $check1 = "apple"; $check2 = "ball"; $check3 = "cat"; if ( (stripos($string, $check1) === false) || (stripos($string, $check2) === false) ...
1
vote
2answers
504 views

Performance wise String Matching

I've a generic DB query function that runs the following checks every time an SQL query is issued: if (preg_match('~^(?:UPDATE|DELETE)~i', $query) === 1) if (preg_match('~^(?:UPDATE|DELETE)~iS', ...
1
vote
3answers
1k views

Removing specific characters from a string in php

How can I check a string in php for specific characters such as '#' or '\'? I don't really want to use replace, just return true or false. Thanks
0
votes
1answer
13 views

Add email to XML file

I'm NEWBIE in php. I think I've got a problem with strpos. I've tried everything but nothing helped. PHP file: function addMailToXML() { $new = $_POST['new-mail']; $mails = array(); $subject = ...
0
votes
3answers
28 views

stop at the first string matched using strpos() in PHP

This maybe some simple silly thing but I can't figure it out on my own. I am trying to make a mobile detection script and have had great success. But upon deeper inspection I found that one of my IF ...
0
votes
4answers
58 views

Regex to Remove Everything After 4th Slash in URL

I'm working in PHP with friendly URL paths in the form of: /2011/09/here-is-the-title /2011/09/here-is-the-title/2 I need to standardize these URL paths to remove anything after the 4 slash ...
0
votes
1answer
23 views

Php strrpos detects no string, always 0 position

Hi guys this is really stunning questions. I have many experience with strrpos but this is really out of sense . First the array: arrCopy => { ["Codice"]=> ...
0
votes
4answers
83 views

Using preg_match to discover and validate types of links embedded in html

I have implemented a function to validate .edu domains. This is how I am doing it: if( preg_match('/edu/', $matches[0])==FALSE ) return FALSE; return TRUE; Now I want to skip those urls as well ...
0
votes
1answer
35 views

PHP strpos and strlen

I'm trying to get words before and after a string in a $body thats taken from a mysql entry. I'm able to find the keyword in the body, get its strpos and its strlen. From there I believe I should be ...

1 2