Skip to main content

Adds a CSharp Style String Object, and namespace emulating much of the syntax C# uses to manipulate strings.

Project description

csharpstring

A general class that provides dot-net style syntax for python string manipulations.

Static & Instance Namespaces

To more easily separate the objective, from non-objective functionality there are two classes internally that can be used.

  1. csharpstring.instance
  2. csharpstring.static

Instance Methods

value1 = instance("The quick brown fox"); print(value1)

The quick brown fox

value2 = instance("jumped over the lazy dog"); print(value2)

jumped over the lazy dog

value3 = value1.Append(value2); print(value3)

The quick brown fox jumped over the lazy dog

value4 = value3.Substr(10,30);

brown fox jumped ove

value5 = value3.Replace("quick", "speedy"); print(value5)

The speedy brown fox jumped over the lazy dog

Static Methods

date = "10/31/22"; time = "8:30 PM"; print(static.Format("It is $0 on $1; do you know where your children are?", time, date)); print(static.Join(" ", value1, value2));

It is 8:30 PM on 10/31/22; do you know where your children are? The quick brown fox jumped over the lazy dog

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

csharpstring-0.0.4.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

csharpstring-0.0.4-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page