Skip to content

Librería en Javascript para obtener en formato JSON las silabas, posición de la silaba tónica, tipo acentuación, hiato, diptongo y triptongo de una palabra.

Notifications You must be signed in to change notification settings

nicofrem/silabajs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

SilabaJS


Librería en Javascript para obtener en formato JSON las silabas, posición de la silaba tónica, tipo acentuación, hiato, diptongo y triptongo de una palabra.

Estructura JSON:

    {
        palabra,         // (String) Palabra ingresada
        longitudPalabra, // (int)    Longitud de la palabra
        numeroSilaba,    // (int)    Número de silabas de la palabra
        silabas,         // (Array)  Array de objeto que contiene la silaba (caracter) y la posicion en la palabra
        tonica,          // (int)    Posición de la silaba tónica (empieza en 1)
        letraTildada,    // (int)    Posición de la letra tildada (si la hay)
        acentuacion,     // (int)    Tipo acentuacion de la palabra (Aguda, Grave, Esdrujula y Sobresdrujula)
        hiato,           // (Array)  Array de objeto que contiene hiato (si la hay)
        diptongo,        // (Array)  Array de objeto que contiene diptongo (si la hay)
        triptongo        // (Array)  Array de objeto que contiene triptongo (si la hay)
    }

Ejemplo de salida con la palabra Leer:

{
  "palabra": "leer",
  "longitudPalabra": 4,
  "numeroSilaba": 2,
  "silabas": [
    {
      "inicioPosicion": 0,
      "silaba": "le"
    },
    {
      "inicioPosicion": 2,
      "silaba": "er"
    }
  ],
  "tonica": 2,
  "letraTildada": -1,
  "acentuacion": "Aguda",
  "hiato": [
    {
      "tipoHiato": "Hiato simple",
      "silabaHiato": "e-e"
    }
  ],
  "diptongo": [],
  "triptongo": []
}

Como implementar:

  • Incluimos la libreria:
<script src="silabajs.js"></script>
  • Asignamos el resultado de la palabra que le pasamos entre paréntesis:
    var silaba = silabaJS.getSilabas('leer');
  • Ahora la variable silaba contiene el JSON con el resultado.

Silabeador (Código base en C++ de donde se realizo la migración)


MIT License

Copyright (c) 2018 Nicolás Cofré Méndez.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Librería en Javascript para obtener en formato JSON las silabas, posición de la silaba tónica, tipo acentuación, hiato, diptongo y triptongo de una palabra.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •