Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.474.298 Times

Femme En String software
Filter: All | Freeware | Demo
 

Femme En String

< 1 2 3 4 5 > 
Added: May 10, 2013 | Visits: 564

Find and replace string in all files This script interates all files in a directory and finds and replaces a string. In this case an IP address.



Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (64): Find and replace string in all files Download

Added: May 10, 2013 | Visits: 550

Simple string checksum This one line function adds up the ascii values of a string and returns the total as a checksum. Also included is a variation which returns the checksum mod 256 (so it can be used as a single byte).The same technique can be used to add up a list of numbers, or to return the average of a list...





Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (64): Simple string checksum Download

Released: January 06, 2015  |  Added: January 13, 2015 | Visits: 706

Word String Finder Word String Finder will help you find all possible word combinations from your folder. This is a nice tool and easy to use. Browse the folder which you want to search, then click the "Search" button. The list box shows the result. To run the Windows application, just double click the item. There...


Platforms: Windows, Windows 7

License: Freeware Size: 2.44 MB Download (64): Word String Finder Download

Added: May 10, 2013 | Visits: 589

Checking whether a string contains a set of chars This script contains a function to check on the occurence of a set of characters.


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: May 10, 2013 | Visits: 316

Printing strings with embedded variable names This class encapsulates a string with embedded variable names. They are usually evaluated when the object's __str__() method is called. You can specify that they be evaluated when the object is created by including the immediate argument to the constructor. The doc string at the top of the module...


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: May 10, 2013 | Visits: 476

Multi-line string block formatting This script introduces a function to auto-strip indentation and whitespace from triple-quoted multi-line strings in Python code. Useful when you need to emit blocks of HTML/TCL/etc. from Python, but don't want to mess up the visual flow of your Python code.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (64): Multi-line string block formatting Download

Added: May 10, 2013 | Visits: 258

Natural string sorting This script sorts strings in a way that seems natural to humans. If the strings contain integers, then the integers are ordered numerically. For example, sorts ['Team 11', 'Team 3', 'Team 1'] into the order ['Team 1', 'Team 3', 'Team 11'].


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (64): Natural string sorting Download

Added: May 10, 2013 | Visits: 436

String Interpolation-Evaluation of Expressions This script represents a lightweight and powerful way to evaluate expressions embedded in strings during interpolation.


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: May 10, 2013 | Visits: 458

Custom String Representations of Bases Custom String Representations of Bases script allows you to make a number shorter(like timestamps in URLs).


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (62): Custom String Representations of Bases Download

Added: May 10, 2013 | Visits: 723

PHP UTF-8 PHP UTF-8 is a UTF-8 aware library of functions mirroring PHP's own string functions. Does not require PHP mbstring extension though will use it, if found, for a (small) performance gain. Features: - Provides UTF-8 aware versions of PHP's string functions - Detection of bad UTF-8 sequences -...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (62): PHP UTF-8 Download

Added: May 10, 2013 | Visits: 828

extract filename from a full path string extract filename from a full path string easily returns the filename component of a path with the built-in PHP basename() function. Useful for splitting a string path to get the filename.


Platforms: Windows, *nix, PHP, BSD

License: Freeware Download (61): extract filename from a full path string Download

Added: May 10, 2013 | Visits: 594

Align text string Align text string script aligns string with spaces between words to fit specified width.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (61): Align text string Download

Added: May 10, 2013 | Visits: 526

Boyer-Moore-Horspool string searching This script implements a string searching algorithm based upon Boyer-Moore string searching, which is considered one of the most efficient string searching algorithms. Boyer-Moore-Horspool only uses the bad-suffix window for matching and is therefore simpler to implement and faster than normals...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (60): Boyer-Moore-Horspool string searching Download

Added: May 10, 2013 | Visits: 651

Changing the indentation of a multi line string When working with text, it may be necessary to change the indentation level of a block. This code will take a multiline string and add or remove leading spaces to each line so that the indentation level of the block matches some absolute number of spaces.


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: May 10, 2013 | Visits: 475

Case Insensitive Strings This script defines a class you could use in place of a string and it emulates a string in all practical ways except that comparisons and lookups are case insensitive. All uses of the string for assignments, however, yield the original case.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (60): Case Insensitive Strings Download

Added: May 10, 2013 | Visits: 387

z_string This module provides several functions that can encode and decode a string. It also has a function called partition for designing faster algorithms.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (60): z_string Download

Added: May 10, 2013 | Visits: 742

Replacing a portion of a string This script allows you to replace a portion of a string at a given position.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (59): Replacing a portion of a string Download

Added: May 10, 2013 | Visits: 521

Regular expression for python string literals For quick-and-dirty processing of Python source files, it can be convenient to have a regular expression that matches Python string literals. This script provides such a regular expression. The example use case above shows how it could be used to rename a variable in a P shows hoe.


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: May 28, 2013 | Visits: 381

Currency Format This script accepts a number or string and formats it like U.S. currency. It adds the dollar sign, rounds to two places past the decimal, adds place holding zeros, and commas where appropriate.Occurs when the user clicks the button or when they finish entering the money amount (and click into the...


Platforms: JavaScript

License: Freeware Size: 102.4 KB Download (59): Currency Format Download

Added: May 10, 2013 | Visits: 611

Reversing a String by Words or Characters Reversing a String by Words or Characters script allows you to reverse the characters or words of a string.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (58): Reversing a String by Words or Characters Download

< 1 2 3 4 5 >