Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

WWW.EscapeURL

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function EscapeURL(s: string, e: Encoding = System.Text.Encoding.UTF8): string;
public static string EscapeURL(string s, Encoding e = System.Text.Encoding.UTF8);
public static function EscapeURL(s: string, e: Encoding = System.Text.Encoding.UTF8): string;
public static string EscapeURL(string s, Encoding e = System.Text.Encoding.UTF8);

Parámetros

s A string with characters to be escaped.
e The text encoding to use.

Descripción

Escapes characters in a string to ensure they are URL-friendly.

Certain text characters have special meanings when present in URLs. If you need to include those characters in URL parameters then you must represent them with escape sequences. It is recommended that you use this function on any text supplied by a user before passing the text as a URL parameter. This will ensure that a malicious user can't manipulate the contents of the URL to attack the webserver.

function Start () {
	// Escaped name is "Fish+%26+Chips'.
	var escName = WWW.EscapeURL('Fish & Chips');
}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { string escName = WWW.EscapeURL("Fish & Chips"); } }

See Also: UnEscapeURL.