Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

grapheme_strstr(3) [php man page]

GRAPHEME_STRSTR(3)							 1							GRAPHEME_STRSTR(3)

grapheme_strstr - Returns part of haystack string from the first occurrence of needle to the end of haystack.

       Procedural style

SYNOPSIS
string grapheme_strstr (string $haystack, string $needle, [bool $before_needle = false]) DESCRIPTION
Returns part of haystack string from the first occurrence of needle to the end of haystack (including the needle). PARAMETERS
o $haystack - The input string. Must be valid UTF-8. o $needle - The string to look for. Must be valid UTF-8. o $before_needle - If TRUE, grapheme_strstr() returns the part of the haystack before the first occurrence of the needle (excluding the needle). RETURN VALUES
Returns the portion of string, or FALSE if needle is not found. EXAMPLES
Example #1 grapheme_strstr(3) example <?php $char_a_ring_nfd = "axCCx8A"; // 'LATIN SMALL LETTER A WITH RING ABOVE' (U+00E5) normalization form "D" $char_o_diaeresis_nfd = "oxCCx88"; // 'LATIN SMALL LETTER O WITH DIAERESIS' (U+00F6) normalization form "D" print urlencode(grapheme_stristr( $char_a_ring_nfd . $char_o_diaeresis_nfd . $char_a_ring_nfd, $char_o_diaeresis_nfd)); ?> The above example will output: o%CC%88a%CC%8A SEE ALSO
grapheme_stristr(3), grapheme_stripos(3), grapheme_strpos(3), grapheme_strripos(3), grapheme_strrpos(3), Unicode Text Segmentation: Grapheme Cluster Boundaries . PHP Documentation Group GRAPHEME_STRSTR(3)

Check Out this Related Man Page

GRAPHEME_STRRIPOS(3)							 1						      GRAPHEME_STRRIPOS(3)

grapheme_strripos - Find position (in grapheme units) of last occurrence of a case-insensitive string

       Procedural style

SYNOPSIS
int grapheme_strripos (string $haystack, string $needle, [int $offset]) DESCRIPTION
Find position (in grapheme units) of last occurrence of a case-insensitive string PARAMETERS
o $haystack - The string to look in. Must be valid UTF-8. o $needle - The string to look for. Must be valid UTF-8. o $offset - The optional $offset parameter allows you to specify where in $haystack to start searching as an offset in grapheme units (not bytes or characters). The position returned is still relative to the beginning of haystack regardless of the value of $offset. RETURN VALUES
Returns the position as an integer. If needle is not found, grapheme_strripos() will return boolean FALSE. EXAMPLES
Example #1 grapheme_strripos(3) example <?php $char_a_ring_nfd = "axCCx8A"; // 'LATIN SMALL LETTER A WITH RING ABOVE' (U+00E5) normalization form "D" $char_o_diaeresis_nfd = "oxCCx88"; // 'LATIN SMALL LETTER O WITH DIAERESIS' (U+00F6) normalization form "D" $char_O_diaeresis_nfd = "OxCCx88"; // 'LATIN CAPITAL LETTER O WITH DIAERESIS' (U+00D6) normalization form "D" print grapheme_strripos( $char_a_ring_nfd . $char_o_diaeresis_nfd . $char_o_diaeresis_nfd, $char_O_diaeresis_nfd); ?> The above example will output: 2 SEE ALSO
grapheme_stripos(3), grapheme_stristr(3), grapheme_strpos(3), grapheme_strrpos(3), grapheme_strstr(3), Unicode Text Segmentation: Grapheme Cluster Boundaries . PHP Documentation Group GRAPHEME_STRRIPOS(3)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Output all commands to logfiles ???

Dear Forum, My .cshrc settings are embedded in a massive jungle of code distributed all over the place, where finding anything is a "needle in a haystack" daily pain in the royal backside. Is there anyway, i can dump out every command and file executed to STDOUT after sourcing my .cshrc ??? ... (2 Replies)
Discussion started by: fawqati
2 Replies

2. Shell Programming and Scripting

last occurrence of a match through multiple files

Hi all, I have a lot of files with extension ".o" and I would like to extract the 10th line after (last) occurrence of a given string in each of the files. I tried: $ grep "string_to_look_for" *.o -A 10 | tail -1 but it gives the occurrence in the last file with extension .o ... (1 Reply)
Discussion started by: f_o_555
1 Replies

3. IP Networking

Identify unknown LAN server from IP or MAC address

Hi, I just got a little task trying to seemingly find a needle in a haystack. I have a server (FreeBSD) where several NFS mounts are established from a host somewhere on the local LAN with the 192.168.x.x prefix. Needless to say, the guy who set this up wasn't too fond of documenting... (2 Replies)
Discussion started by: brightstorm
2 Replies

4. Shell Programming and Scripting

Counting occurrence of all words in a file

Hi, Given below is the input file: http://i53.tinypic.com/2vmvzb8.png Given below is what the output file should look like: http://i53.tinypic.com/1e6lfq.png I know how to count the occurrence of 1 word from a file, but not all of them. Can someone help please? An explanation on the... (1 Reply)
Discussion started by: r4v3n
1 Replies

5. UNIX for Dummies Questions & Answers

Sed, last occurrence

How to find last occurrence of a keyword in a file using sed. (4 Replies)
Discussion started by: nexional
4 Replies