Método String.Format() en C# con ejemplos | Juego – 2

Format() string En otras palabras, este método se utiliza para string .

Formato Conjunto-1 Conjunto-2 y Conjunto-3

  1. Método String.Format(IFormatProvider, String, Object[])

Sintaxis:

public static string Format (IFormatProvider provider, string format, params object[] args);

Parámetro: Este método tiene los siguientes parámetros:

string de formato compuesto requerida.

Valor de retorno: argumentos de formato de este método

Ejemplo : 

C#

// C# program to illustrate the 
// String.Format(IFormatProvider,
// String,Object[]) Method
  
using System;   
  
public class GFG    
{    
    // Main method 
    public static void Main(string[] args)    
    {   
          
        DateTime dateToDisplay = 
        new DateTime(2020, 5, 20, 18, 32, 0);
          
        System.Globalization.CultureInfo 
        culture = new System.Globalization.
        CultureInfo("en-US");
          
        string output = String.Format
        (culture, "{0,-11} {1,-35:D}",
         culture.Name, dateToDisplay);
           
        Console.WriteLine(output);
    }    
}

Producción:

en-US       Wednesday, May 20, 2020

Sintaxis:

public static string Format (string format, object arg0, object arg1);

Parámetro: Este método tiene los siguientes parámetros:

string de formato compuesto requerida.

Valor devuelto: este método formatea arg0 arg1

Ejemplo : 

C#

// C# program to illustrate the 
// String.Format(String, Object,
// Object) Method
  
using System;   
  
public class GFG    
{    
    // Main method 
    public static void Main(string[] args)    
    {   
          
        string formatString = 
        "Value: {0,0}\n" + 
        "NOT of Value: {1,0}";
          
        int value1 = 169;
          
        string result = String.Format
        (formatString, value1, ~value1);
          
        Console.WriteLine(result);
    }    
}

Producción:

Value: 169
NOT of Value: -170

Sintaxis:

public static string Format (string format, object arg0, object arg1, object arg2);

Parámetro: Este método tiene los siguientes parámetros:

string de formato compuesto requerida.

Valor de retorno: este método formatea arg0 arg1 y arg2

Ejemplo : 

C#

// C# program to illustrate the 
// String.Format(String, Object,
// Object, Object) Method
  
using System;   
  
public class GFG    
{    
    // Main method 
    public static void Main(string[] args)    
    {   
          
        string formatString = 
        "Value 1: {0,0}\n" + 
        "Value 2: {1,0}\n"+
        "Sum of Values : {2,0}";
          
        int value1 = 169;
        int value2 = 961;
          
        string result = String.Format
        (formatString, value1, value2, 
        value1 + value2);
          
        Console.WriteLine(result);
    }    
}

Producción:

Value 1: 169
Value 2: 961
Sum of Values : 1130

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *