Showing 1680 open source projects for "string"

View related business solutions
  • Demo Series - Small Business Backup By Veeam Icon
    Demo Series - Small Business Backup By Veeam

    Learn how to protect your Microsoft 365 data, with simple, actionable tips today.

    Watch this on-demand demo series and learn how to protect your Microsoft 365 data with clear, simple, actionable steps that are easy to implement for businesses of all sizes.
    Watch Demo Series
  • MongoDB Atlas runs apps anywhere Icon
    MongoDB Atlas runs apps anywhere

    Deploy in 115+ regions with the modern database for every enterprise.

    MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
    Start Free
  • 1

    String221B

    Small win form app for generating strings for black box testing

    A simple win forms application written in C# that allows a user to enter a string and the number of time it should be repeated and then send it to the users clipboard. This is useful for software testers wanting to generate long strings or strings with specific patterns for use in black box testing.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2

    NumberInWords

    Application that converts a number in words

    A program that can be reused to convert numbers into words. An API defined in NumberInWordsService interface: String numberInWords(int num) which is the essence and translates a number into words. The implementations of this API are configurable and provides a choice of 1. Metric number system and 2. Indian number system The metric system uses the common use of expressing in terms of billions, millions thousands etc The Indian system uses the terms lakh and crore and expresses the numbers therein. ...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3

    Electronic Data Tags

    Electronic Data Tags value storage API For java.

    EDT is an API For java designed to allow you to store data from your programs in files easily. EDT is separated into two parts: EDT Basic (just called EDT) and EDTA (Advanced). EDT Basic stores only String values, while EDTA uses EDT Basic to store String, int, boolean, float, long, double, and byte values. To make accessing values easier, EDT and EDTA allow you to assign a name, like "FileLocation", to a value, instead of an integer, like in an array. The values are stored as ISO-8859-1 Strings.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4

    minifireweall

    router /virus gateway

    uclibc+linux2.6,support multi-isp ,highspeed router,videocache,virus gateway,pppoeserver/vpnserver ,support regex expression string/hex content search and replace,protect webserver anti injection. 支持多线ISP,视频缓存,病毒网关,支持TCP/UDP包正则表达式内容查找与替换,支持对WEB服务预防sql等多种注入攻击。
    Downloads: 0 This Week
    Last Update:
    See Project
  • Earn up to 16% annual interest with Nexo. Icon
    Earn up to 16% annual interest with Nexo.

    Access competitive interest rates on your digital assets.

    Generate interest, borrow against your crypto, and trade a range of cryptocurrencies — all in one platform. Geographic restrictions, eligibility, and terms apply.
    Get started with Nexo.
  • 5

    libhoro

    Embeddable Cron Library for C and C++

    libhoro is a simple cross platform embeddable cron library written in C that allows developers to easily schedule actions (callbacks) based on a descriptive cron style schedule string. The design of libhoro is such that it can easily integrate into any program event loop. For more information, see the FAQ on the libhoro webpage.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    Sudokut is a platform-independent Sudoku Solver written in Tcl. It is a command line tool, with no graphic interface: just pass a sudoku problem as a string to the command and it returns all possible solutions. It also explains the entire resolution process.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    ...Once the (On-click) application has run, import the NMEA Strings from the "NMEA Strings.txt" file, 3. You can choose either to process the strings one by one using the "Process String" button, or process the whole file by clicking the "Export All to File" button, Which saves the output to a text file.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 8

    StringLab

    implementations of known string matching algorithms

    Downloads: 0 This Week
    Last Update:
    See Project
  • 9

    Simple Math Parser

    A simple math parser

    The parser must implement an order of precedence of left to right, brackets are used to explicitly denote precedence by grouping parts of an expression that should be evaluated first again left to right The parser must recognise the input string and evaluate the expression. Rules: a = '+', b = '-', c = '*', d = '/', e = '(', f = ')'
    Downloads: 0 This Week
    Last Update:
    See Project
  • AI-generated apps that pass security review Icon
    AI-generated apps that pass security review

    Stop waiting on engineering. Build production-ready internal tools with AI—on your company data, in your cloud.

    Retool lets you generate dashboards, admin panels, and workflows directly on your data. Type something like “Build me a revenue dashboard on my Stripe data” and get a working app with security, permissions, and compliance built in from day one. Whether on our cloud or self-hosted, create the internal software your team needs without compromising enterprise standards or control.
    Try Retool free
  • 10
    babyrabbitfractal

    babyrabbitfractal

    Fractal curve with Fibonnaci golden string

    The baby rabbit curve is made by taking the golden string (rabbit breeding distribution), turning left for a mature rabbit at an even position, right for a mature rabbit at an odd position, and straight ahead for a baby rabbit. It's built using the Baby X toolkit.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11

    vym2fm

    vym to freemind converter

    Downloads: 0 This Week
    Last Update:
    See Project
  • 12

    Vala Tree Objects

    Sample classes which handle "tree objects" with attributes

    Sample classes which handle "tree objects" with attributes. Could create a tree objects from XML file or string.
    Downloads: 4 This Week
    Last Update:
    See Project
  • 13
    PHP MySQL Simple Login Box

    PHP MySQL Simple Login Box

    PHP MySQL Login and Registration Script for Biginners

    Login Box is a simple PHP MySQL Login and Registration script with some common functions like numeric function, string function and OOP method within a class, it has HTML5 validation pattern on client side and PHP validation on server side. I is basically for beginners of PHP users to manipulate data into MySQL using classes. We do not put Forget Password and Email to User Functionality in this small PHP snippet. The next version will take all the Functionality with admin panel for more you may visit to http://www.itcampusonline.com
    Downloads: 1 This Week
    Last Update:
    See Project
  • 14

    Python Mixed Fractions Class

    Support for mixed number fractions based on the library Fraction class

    The goal of this project is to expand the functionality of the Python 3.x standard library Fraction class to accept anything that Fraction would and more: Mixed('3 4/5') == Mixed(3,4,5) == Mixed(Fraction(19,5)) etc (see examples section in the source for full list). This class is designed to behave exactly as a standard Fraction would except that 1) it supports string constructions of mixed number fractions, 2) it supports three argument construction in the form of whole_number,numerator, denominator, and 3) the string representation is formatted in mixed number form. All the methods and properties behave the same (except as noted above) with the addition of a fnumerator property which returns the numerator of the fractional portion of the number only and the addition of a whole property which behaves as a % 1 to return only the whole number portion of the number. ...
    Downloads: 1 This Week
    Last Update:
    See Project
  • 15

    WordShuffler

    Scrambles a given string of text

    This little utility will take the string of text you input and scramble it up.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16

    DynamicUtilities

    C# Library providing dynamic compilation, loading and other functions

    This C# library provides: - dynamic compilation of C# code - dynamic loading of DLLs and code reflection - library folder management - token replacement inside a string
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    MathX

    MathX

    Fixed-length Arithmetic-types library

    MathX is a fixed-length arithmetic-types written in pure c++ templates. The goal is to provide signed-integer, unsigned-integer, IEEE-754 float-point and fixed-point types, all with specific number of bits. To this moment, only signed-integer and unsigned-integer are completed for little-endain architecture. Any compiler that support c++03 or c++11 can successfully compile MathX. Refer to README for more information.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 18
    Binary Dealer (Binary to Text Editor)

    Binary Dealer (Binary to Text Editor)

    Convert and translate full text document into Binary and vice-versa.

    Binary Dealer is a text/binary editor that allows conversion of full text document or string into Binary values. You can edit binary or text file by using the Binary Dealer Editor and save it afterwards.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19

    Java Regular Expression Tester Tool

    Tool that allows to test a String based on a regular expression

    This is a Java program designed for helping programmers to test text strings based on user input made Java regular expressions.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 20
    [S]-Subs

    [S]-Subs

    [S]-Subs

    [S]-Subs is easy one click commmand line Subtitle Downloader For Windows. It uses OpenSubtitles-API and supports all their languages. Thanks to yanniel for OpenSubtitles API code, Janilabo for some String Manipulation Code and thanks to Cynic for pointing out some errors.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 21
    Mole

    Mole

    Automatic SQL Injection Exploitation Tool

    Mole is an automatic SQL Injection exploitation tool. Only by providing a vulnerable URL and a valid string on the site it can detect the injection and exploit it, either by using the union technique or a boolean query based technique. The Mole uses a command based interface, allowing the user to indicate the action he wants to perform easily. The CLI also provides auto-completion on both commands and command arguments, making the user type as less as possible.
    Downloads: 17 This Week
    Last Update:
    See Project
  • 22

    Fusion Charts Java Api

    This is java Api for Fusion Charts XML data generation

    This is a simple, straight forward API for Java, which can generate XML String which is to be used with Fusion Charts to generate charts.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23

    Eclipse-StringUtils

    Eclipse plug-in

    String Utils - Allows you to format SQL queries inside Eclipse editor. - Extract and unescape string content from variable. How to: 1) Set cursor inside bounds of the string 2) String Utils → Format SQL or String Utils → Extract String URL: https://github.com/kbss/StringUtils_plugin
    Downloads: 1 This Week
    Last Update:
    See Project
  • 24

    1337 Speaker

    This small Java App will turn any sentence into 1337 Speak.

    This small Java Application (At a wopping 2.14kb) will turn any sentence, big or small, into 1337 speak. Are you a parent trying to speak with your son? Use 1337 Speaker. Do you not know how to sound uber kewl in Call of Duty? Use 1337 Speaker. Want to impress your boss with your new found vocabulary? Well by golly use 1337 Speaker!
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    Generates a list of passwords (wordlist) for password crackers.
    Downloads: 3 This Week
    Last Update:
    See Project