将字符串反转

时间:2021-06-10 17:02:39

一:正则

 

将字符串反转将字符串反转代码
static   void  Main( string [] args)
    {
        MatchCollection mc 
=  Regex.Matches(Console.ReadLine(),  @" (\S)+ " );
        
for  ( int  i  =  mc.Count  -   1 ; i  >=   0 ; i -- )
        {
            Console.Write(mc[i].Value);
            Console.Write(
'   ' );
        }
    }

 

 

 

二:其它