Search:

Type: Posts; User: Lacosta

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,558

    C# String Replace Extension

    Script;

    public static class Extension {
    public static string Replace(this string subject,string search, string replace, int count) {
    string new_String = "";
    ...
  2. Replies
    2
    Views
    3,284

    [Snippets] String Functions in C

    Some usable string functions.




    #include <stdio.h>
    #include <stdlib.h>


    /* String Length */
Results 1 to 2 of 2