SóProvas


ID
311860
Banca
FCC
Órgão
TRT - 14ª Região (RO e AC)
Ano
2011
Provas
Disciplina
Programação
Assuntos

Em JavaScript tem o formato InstStr. ___ (início, fim); com o objetivo de extrair uma substring do objeto InstStr sem modificá-lo. A substring extraída começa no índice especificado no argumento inicio e se estende até o caractere anterior ao índice especificado no argumento fim.

A lacuna é corretamente preenchida por

Alternativas
Comentários
  • String Object Methods

    Method Description
    charAt() Returns the character at the specified index
    charCodeAt() Returns the Unicode of the character at the specified index
    concat() Joins two or more strings, and returns a copy of the joined strings
    fromCharCode() Converts Unicode values to characters
    indexOf() Returns the position of the first found occurrence of a specified value in a string
    lastIndexOf() Returns the position of the last found occurrence of a specified value in a string
    match() Searches for a match between a regular expression and a string, and returns the matches
    replace() Searches for a match between a substring (or regular expression) and a string, and replaces the matched substring with a new substring
    search() Searches for a match between a regular expression and a string, and returns the position of the match
    slice() Extracts a part of a string and returns a new string
    split() Splits a string into an array of substrings
    substr() Extracts the characters from a string, beginning at a specified start position, and through the specified number of character
    substring() Extracts the characters from a string, between two specified indices
    toLowerCase() Converts a string to lowercase letters
    toUpperCase() Converts a string to uppercase letters
    valueOf() Returns the primitive value of a String object

    Fonte: http://www.w3schools.com/jsref/jsref_obj_string.asp
  • Acertei, mas muito mal formulada... confusa que só

  • O método slice() extrai uma sessão de uma string e retorna uma nova  string.

    SintaxeEdit

    str.slice(inicioSlice[, fimSlice])

    Paramêtros

    inicioSlice

    O indíce base-zero que se inicia a extração. Se negativo, é considerado como sourceLength + beginSlice onde sourceLength é o tamanho da string (por exemplo, se inicioSlice é -3 é tratado como sourceLength - 3).

    fimSlice

    Opcional. O indíce base-zero no qual termina a extração. Se omitido, slice() extrairá até o fim da string. Se negativo, é tratado como sourceLength + fimSlice where sourceLength é o tamanho da string (por exemplo, se fimSlice é -3 é tratado como sourceLength - 3).

    DescriçãoEdit

    slice() extrai um texto de uma string e retorna uma nova string.  Modificações no texto de uma string não afetam a outra string.

    slice() extrai até, mas não inclue fimSlice. str.slice(1, 4) extrai a partir do segundo carácter até o quarto carácter (caracteres indexados 1, 2, e 3).

    Exemplo, str.slice(2, -1) extrai a partir do terceiro carácter até o penultimo carácter da string.

     

  • a-

    slice() extracts a part of a string and returns the extracted part in a new string. The method takes 2 parameters: the starting index (position), and the ending index (position).

     

    https://www.w3schools.com/js/js_string_methods.asp