string -> string that is compatible with linux file system.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Stijn Goris

    string -> string that is compatible with linux file system.

    hi all,

    Does a function excist that converts a string to a string thats compatible
    with linux file system?

    kind regards

    Stijn


  • Jon Kraft

    #2
    Re: string -> string that is compatible with linux file system.

    "Stijn Goris" <mepisto@hotmai l.com> wrote:
    [color=blue]
    > Does a function excist that converts a string to a string thats
    > compatible with linux file system?[/color]

    What do you mean? Stripping certain special chars?

    JOn

    Comment

    • Stijn Goris

      #3
      Re: string -&gt; string that is compatible with linux file system.


      "Jon Kraft" <jon@jonux.co.u k> schreef in bericht
      news:Xns9480972 3B955Fjonjonuxc ouk@130.133.1.4 ...[color=blue]
      > "Stijn Goris" <mepisto@hotmai l.com> wrote:
      >[color=green]
      > > Does a function excist that converts a string to a string thats
      > > compatible with linux file system?[/color]
      >
      > What do you mean? Stripping certain special chars?
      >
      > JOn[/color]

      Indeed, stripping some characters and taking the length into account (and
      maybee more)



      Comment

      • Jon Kraft

        #4
        Re: string -&gt; string that is compatible with linux file system.

        "Stijn Goris" <mepisto@hotmai l.com> wrote:
        [color=blue]
        > "Jon Kraft" <jon@jonux.co.u k> schreef:[color=green]
        >> "Stijn Goris" <mepisto@hotmai l.com> wrote:
        >>[color=darkred]
        >> > Does a function excist that converts a string to a string thats
        >> > compatible with linux file system?[/color]
        >>
        >> What do you mean? Stripping certain special chars?[/color]
        >
        > Indeed, stripping some characters and taking the length into account
        > (and maybee more)[/color]

        ereg_replace(), preg_replace(), strlen() .. :)
        JOn

        Comment

        Working...