| | |
Description | Compatibility | Level/ Author | Views/ Date Submitted | User Rating |
| |
| |
 |
[ A C++ implementation of the Levenshtein Distance ] | C++ (general) | Advanced / Gonzales Cenelia | 18271 since 1/17/2005 2:26:14 AM |
By 5 Users 4 Excellent Ratings
|
| |
The "Levenshtein distance" is a measure of the similarity between two strings,
this algorithm is also refered to as "edit distance". The "Levenshtein distance"
was named after the russian scientist "Vladimir Levenshtein", who has discovered
it back in 196 ...(description truncated) |
| |
| |
| |
 |
[ A simple string spliter ] | C++ (general) | Beginner / Gonzales Cenelia | 19724 since 4/26/2005 1:37:48 PM |
By 1 Users
|
| |
This code split a given string into tokens. |
| |
| |
| |
 |
[ STL String Manipulation Routines ] | C++ (general) | Intermediate / Gonzales Cenelia | 17003 since 12/31/2004 3:47:55 PM | Unrated
|
| |
This is a very useful collection of routines to manipulate strings. It features string operations such as: trimLeft, trimRight, remove, replace, copy, reverse, etc. And all of this functions are integrated into a namespace: "string_routines". |
| |
| |
| |
 |
[ String Replacer ] | C++ (general) | Intermediate / Gonzales Cenelia | 17459 since 10/13/2003 9:57:51 PM |
By 4 Users 2 Excellent Ratings
|
| |
The function "replace_string" included in this program will replace all occurence
of a certain string by another one and the function "find_occurence" will count
the number of occurence of a string in another string. Unlike most string replacer
func ...(description truncated) (ScreenShot) |
| |
| |
| |
 |
[ String Tokenizer Class ] | C++ (general) | Intermediate / Gonzales Cenelia | 12640 since 9/27/2004 12:57:29 PM | Unrated
|
| |
This is a great class for manipulating strings!
Please feel free to vote or to live some comments,it will be very appreciated!
|
| |
| |
| |
 |
^^Fuzzy String Matching | C++ (general) | Intermediate / Gonzales Cenelia | 20204 since 8/27/2003 12:18:03 AM |
By 3 Users 3 Excellent Ratings
|
| |
The fuzzy string matching concept provide a powerful way for comparing strings.
This code provide a simple implementation of the fuzzy string matching technique.
The function "fuzzymatch" included in this program perform a fuzzy comparaison
(fault tol ...(description truncated) (ScreenShot) |
| |
| |
| |
 |
^^Use Bubble Sort for Ordering Strings | C, C++ (general), Microsoft Visual C++, Borland C++, UNIX C++ | Intermediate / Gonzales Cenelia | 18929 since 9/21/2002 3:54:40 PM |
By 2 Users 2 Excellent Ratings
|
| |
This program use the "Bubble Sort Algorythm" for ordering a list of names alphabetically.
It also shows how to swap two strings. |
| |
| |
| |
 |
^NEW^ -- wildcard string compare (globbing) | C, C++ (general), Microsoft Visual C++, Borland C++, UNIX C++ | Beginner / Jack Handy | 24599 since 5/2/2001 12:49:06 AM |
By 10 Users 7 Excellent Ratings
|
| |
matches a string against a wildcard string such as "*.*" or "bl?h.*" etc. This is good for file globbing or to match hostmasks. |
| |
| |
| |
 |
^string conversions (string2char, char2string)^ | C, C++ (general), Microsoft Visual C++, Borland C++, UNIX C++ | Intermediate / NDawg | 26068 since 1/7/2003 12:17:28 AM |
By 4 Users 2 Excellent Ratings
|
| |
This code will convert between string and char* datatypes. This code is very simplistic (3 lines of code for each conversion and that's including the function header). So far I have found absolutely no problems with these functions.
NOTE: this code will N ...(description truncated) |
| |
| |
| |
 |
_A Beginner's STRCMP, STRCAT, and STRCPY tutorial (VB-LIKE String Manipulation) | C++ (general), Microsoft Visual C++ | Beginner / Jaime Muscatelli | 31816 since 2/22/2003 12:25:49 PM |
By 10 Users 5 Excellent Ratings
|
| |
This tutorial is for mostly beginners that need to know how to manipulate char strings easily. I recently switched from vb, and it was very hard to get used to chars (from vb's String identifier). This will show you how copy, compare, and add strings toge ...(description truncated) |
| |