搜索资源列表
模式匹配MFC_jwj
- 此程序用mfc完成查找替换功能,在编辑框中输入一串字符,然后输入你要查询的字符串,之后输入你要替换的字符串(替换查询的内容),结果显示在最后的编辑框中-mfc use this procedure to complete the replacement search function, the edit box input string of characters then enter your inquiries to the string, after you input the strin
searchForChar
- 在一大串字符串中查找某一个字符或者字符串出现的次数.并且返回次数.-string in a string search for a character string or the number of occurrences. And the number of returnees.
namesearch
- 汉语姓名模糊查找的程序,可以取得单个字符或字符串的声母来查找
charstatistic
- 查找一个文件中相同字符出现的次数 ,示范常用的文件操作和字符串操作-search for a document of the same number of characters, the model used in the paper and string manipulation operators
汇编原理实验
- 计算机汇编实验:表格显示字符,查找匹配字符串,分类统计字符个数,查找电话号码
VC++6实现字符查找,定位
- VC++6实现字符查找,定位,插入字符串的操作,演示了对话框的操作-VC++6 to achieve character to find, locate, insert the string operations, demonstrate the operation of the dialog box
findCStirng
- 字符串查找,从一段字符串中查找需要查找的字符或单词-String to find, from a string to find the need to find the characters or words
counter
- 本程序实现查找问题,可以计数一个字符串中含数字、字母、其他字符的个数。-Find a problem of this program, you can count a string containing numbers, letters, number of other characters.
Mystring
- string库函数 中几个函数的实现。 字符串查找,字符查找,求字符串长度。-string library functions in the realization of several functions. String to find, find the characters, and the length of the string.
socket_shell
- 分别编一个客户端程序和服务器程序,首先建立客户程序与服务器之间正确的socket连结,然后利用send和recv函数,客户程序将一个较长的文本文件(如>1k字节) (目的是为了在一次连接测试多次的收/发)中的数据发送给服务器。要求服务器全部正确地接收到所有的数据(一个也不能少),并将其存入一个文件。 编写一个递归的shell程序 findit,该程序搜索参数2指定的目录树,查找所有的以 .c和 .h结尾的文件,如文件行中含有参数1指定的字符串,显示该行和相应的文件名。如目录参数2缺省,
Pad
- 基于Dialog类,一个简单的查找字符串的程序,带有菜单等功能-Dialog-based class, a simple procedure for the search string with the menu and other functions
sort
- 在输入的字符串中查找指定字符,动态分配内存-In the input string to find the specified character, dynamic allocation of memory
zzbds
- 正则表达式的运用 字符串或字符匹配 字符串查找 字符串替换-The use of regular expression matching the string search string or character string replacement
CSharpsharp
- 完全手册,一场新的革命。关于在文本中查找字符串的问题。c查找字符数字,统计字符以及数字个数。-# complete guide, a new revolution. On the question of c# to find a string in the text. C# find character numbers, characters, and a number of statistics.
search
- 实现在一组字符串中查找指定字符的个数的功能,内涵课程设计报告任务书-Find achieve the specified character string in a number of functions, suitable for beginners to learn
indexofexample_p35
- 利用c#语言实现在一串字符串中查找自己所查找的字符。-Use c# language to find himself looking for a string of characters in the string.
2
- 输入一个字符串,输入一个字符来查找它最后出现的位置(Enter a string and enter a character to find its final location)
New folder
- 1.字符串中特定字符的位数查找 2.通过特定位数查找对应字符以及相关功能(1. The number of bits in a string is searched for 2. Search for corresponding characters and related functions through a specific number of digits.)
C程序—查找
- 寻找对称的字符串的最大长度,输入一串字符,输出与其对称的最大长度。(Finding the maximum length of a symmetric string)
设计strstr函数
- 描述 C语言中有一个函数strstr。我们编写一个类似功能的函数,mystrstr int mystrstr(char a[], char b[]); 作用是查找字符串a中出现的第一个b串的下标,如果没有找到,返回-1。 输入 分别输入两个字符串a,b,分别占一行。字符串长度不超过500个字符。 输出 字符串a中出现的第一个b串的下标。 样例 输入 abca a 输出 0(describe There is a function strstr in C language. W