Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Move the position of the multiline string
#1
Hi,

I want to Move the position of the multiline string (Red strings) to the bottom
Is there any good way?

Thanks in advance for any advice and help
david

-------------------------------------------------------before:
function Main([string[]]$args)
{
    function D($p1)
    {
        '{D}'
    }
}


function A($p1, $p2)
{
    '{A}'
}

function B($p1)
{
    '{B}'
}

function C()
{
    '{C}'
}


-------------------------------------------------------after:

function A($p1, $p2)
{
    '{A}'
}

function B($p1)
{
    '{B}'
}

function C()
{
    '{C}'
}


function Main([string[]]$args)
{
    function D($p1)
    {
        '{D}'
    }
}


Macro Macro4
Code:
Copy      Help
_s=
;function Main([string[]]$args)
;{
;,function D($p1)
;,{
;,,'{D}'
;,}
;}
;
;function A($p1, $p2)
;{
;,'{A}'
;}
;
;function B($p1)
;{
;,'{B}'
;}
;
;function C()
;{
;,'{C}'
;}

;Todo:  Move the position of the multiline string (function Main) to the bottom


Messages In This Thread
Move the position of the multiline string - by Davider - 10-21-2022, 01:30 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)