Categorias

Função Left e Right no JavaScript

JavaScript não oferece as funções Left e Right que existem no VbScript.

Utilize estas funções para extrair trechos de uma string tanto pela esquerda quanto pela direita.

function Left(str, n){
	if (n <= 0)
	    return "";
	else if (n > String(str).length)
	    return str;
	else
	    return String(str).substring(0,n);
}
function Right(str, n){
    if (n <= 0)
       return "";
    else if (n > String(str).length)
       return str;
    else {
       var iLen = String(str).length;
       return String(str).substring(iLen, iLen - n);
    }
}