¿Cómo obtener el valor de una string después de la última barra en JavaScript?

La tarea es obtener la string después de un carácter específico (‘/’). Estas son algunas de las técnicas más utilizadas discutidas. Vamos a utilizar JavaScript.
Enfoque 1:

  • Divida la string por el método .split() y colóquela en una variable (array).
  • Use la propiedad .length para obtener la longitud de la array.
  • De la array devuelve el elemento en index = length-1 .

Ejemplo 1: Este ejemplo utiliza el enfoque discutido anteriormente.

<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        Get value of a string
      after last slash in JavaScript?
    </title>
</head>
  
<body style="text-align:center;"
      id="body">
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>
    <p id="GFG_UP" 
       style="font-size: 15px;
              font-weight: bold;">
    </p>
    <button onclick="GFG_FUN()">
        click here
    </button>
    <p id="GFG_DOWN" 
       style="font-size: 24px; 
              font-weight: bold;
              color: green;">
    </p>
    <script>
        var el_up = document.getElementById("GFG_UP");
        var el_down = document.getElementById("GFG_DOWN");
        var str = "folder_1/folder_2/file.html";
        el_up.innerHTML = "Click on the button to get"+
          " the string after last slash.<br><br>String - '"
        + str + "'";
  
        function GFG_FUN() {
            str = str.split("/");
            el_down.innerHTML = str[str.length - 1];
        }
    </script>
</body>
  
</html>

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Enfoque 2:

  • Primero, encuentre el último índice de (‘/’) usando el método .lastIndexOf(str) .
  • Use el método .substring() para obtener acceso a la string después de la última barra.

Ejemplo 2: Este ejemplo utiliza el enfoque discutido anteriormente.

<!DOCTYPE HTML>
<html>
  
<head>
    <title>
        Get value of a string 
      after last slash in JavaScript?
    </title>
</head>
  
<body style="text-align:center;" 
      id="body">
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>
    <p id="GFG_UP"
       style="font-size: 15px;
              font-weight: bold;">
    </p>
    <button onclick="GFG_FUN()">
        click here
    </button>
    <p id="GFG_DOWN" 
       style="font-size: 24px; 
              font-weight: bold;
              color: green;">
    </p>
    <script>
        var el_up = document.getElementById("GFG_UP");
        var el_down = document.getElementById("GFG_DOWN");
        var str = "folder_1/folder_2/file.html";
        el_up.innerHTML = "Click on the button to get"+
          " the string after last slash.<br><br>String - '"
        + str + "'";
  
        function GFG_FUN() {
            el_down.innerHTML = 
              str.substring(str.lastIndexOf('/') + 1);
        }
    </script>
</body>
  
</html>

Producción:

  • Antes de hacer clic en el botón:
  • Después de hacer clic en el botón:

Publicación traducida automáticamente

Artículo escrito por PranchalKatiyar 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 *