Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wcsstr(3) [centos man page]

WCSSTR(3)						     Linux Programmer's Manual							 WCSSTR(3)

NAME
wcsstr - locate a substring in a wide-character string SYNOPSIS
#include <wchar.h> wchar_t *wcsstr(const wchar_t *haystack, const wchar_t *needle); DESCRIPTION
The wcsstr() function is the wide-character equivalent of the strstr(3) function. It searches for the first occurrence of the wide-charac- ter string needle (without its terminating null wide character (L'')) as a substring in the wide-character string haystack. RETURN VALUE
The wcsstr() function returns a pointer to the first occurrence of needle in haystack. It returns NULL if needle does not occur as a sub- string in haystack. Note the special case: If needle is the empty wide-character string, the return value is always haystack itself. CONFORMING TO
C99. SEE ALSO
strstr(3), wcschr(3) COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
2011-09-28 WCSSTR(3)

Check Out this Related Man Page

WCSSTR(3)						     Linux Programmer's Manual							 WCSSTR(3)

NAME
wcsstr - locate a substring in a wide-character string SYNOPSIS
#include <wchar.h> wchar_t *wcsstr(const wchar_t *haystack, const wchar_t *needle); DESCRIPTION
The wcsstr() function is the wide-character equivalent of the strstr(3) function. It searches for the first occurrence of the wide-charac- ter string needle (without its terminating null wide character (L'')) as a substring in the wide-character string haystack. RETURN VALUE
The wcsstr() function returns a pointer to the first occurrence of needle in haystack. It returns NULL if needle does not occur as a sub- string in haystack. Note the special case: If needle is the empty wide-character string, the return value is always haystack itself. CONFORMING TO
C99. SEE ALSO
strstr(3), wcschr(3) COLOPHON
This page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
2011-09-28 WCSSTR(3)
Man Page

4 More Discussions You Might Find Interesting

1. Linux

Replacing ¿ special character on Linux

We are on Linux Suse. One of our application has this string XXX ¿ YYY in the data file. I think it was entered through some spanish keyboard. But we want to replace this character with a space before we send the file to other applications. I opened the file using Vi Editor .I thought first of... (5 Replies)
Discussion started by: LinuxTest
5 Replies

2. UNIX for Dummies Questions & Answers

Need help with substring

I need to check the occurrence of one string within another. code ******************** if ;then do something done ******************** Thanks (7 Replies)
Discussion started by: w020637
7 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

Extracting substring from variable

Hi All, I'm facing issue wherein I have 2 character string like 'CR' and 'DR' and I want to extract just 1st character but am unable to do it. I tried below options but they are returning me 2nd character only, var="CR" echo ${var:1} returns just "R" echo ${var:0} returns "CR" ... (5 Replies)
Discussion started by: arvindshukla81
5 Replies