Hi,

Say I want to replace all single lines into double line

bla
bla
bla

into

bla

bla

bla

How can I do that in scite?

The only software that I know will do this is microsoft word. You just use p when you mean new line

In scite the way to do it seems to be \n but it ain't no workin

    $string='bla
    bla
    bla';

    print str_replace("\n","\n\n",$string); //if you replace the lines with php...

    or use the <pre></pre> format.

    print "<pre>$string</pre>";

    Forget the Word when you talking of programming in php.

    *****ple a free app: pspdad is a good program, in that there is reaplace command, if you want to replace the source code:
    \s into \n\n

    teguh123;10891388 wrote:

    Hi,

    Say I want to replace all single lines into double line

    bla
    bla
    bla

    into

    bla

    bla

    bla

    How can I do that in scite?

    The only software that I know will do this is microsoft word. You just use p when you mean new line

    In scite the way to do it seems to be \n but it ain't no workin

      While the main use of scintilla is to write PhP program, I just want to edit regular text file.

      This has nothing to do with PhP

        Write a Reply...