Format() string En otras palabras, este método se utiliza para string .
Formato Set-1 y Set-2,
- Método String.Format(IFormatProvider, String, Object[])
Sintaxis:
public static string Format (IFormatProvider provider, string format, object arg0, object arg1);
Parámetro: Este método tiene los siguientes parámetros:
proveedor: objeto que proporciona información de formato específica de la cultura.
string de formato compuesto requerida.
Valor devuelto: este método formatea arg0 arg1
Ejemplo :
C#
// C# program to illustrate the // String.Format(IFormatProvider, // 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; System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("es-ES"); string result = String.Format (culture, formatString, value1, ~value1); Console.WriteLine(result); } }
Producción:
Value: 169 NOT of Value: -170
Sintaxis:
public static string Format (IFormatProvider provider, string format, object arg0, object arg1, object arg2);
Parámetro: Este método tiene los siguientes parámetros:
proveedor: objeto que proporciona información de formato específica de la cultura.
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(IFormatProvider, // 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; System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("es-ES"); string result = String.Format (culture, 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