Hai cercato la traduzione di contents da Coreano a Spagnolo

Coreano

Traduttore

contents

Traduttore

Spagnolo

Traduttore
Traduttore

Traduci istantaneamente testi, documenti e voce con Lara

Traduci ora

Contributi umani

Da traduttori professionisti, imprese, pagine web e archivi di traduzione disponibili gratuitamente al pubblico.

Aggiungi una traduzione

Coreano

Spagnolo

Informazioni

Coreano

예 1. contents of sample.ini

Spagnolo

inicio

Ultimo aggiornamento 2011-10-24
Frequenza di utilizzo: 1
Qualità:

Coreano

returns the contents of the field.

Spagnolo

$item_3 = odbc_result( $query_id, 3); $item_val = odbc_result($query_id, "val");

Ultimo aggiornamento 2011-10-24
Frequenza di utilizzo: 1
Qualità:

Attenzione: contiene formattazione HTML nascosta

Coreano

이름/ 위치( l) tab name: search by contents

Spagnolo

nombre/ ubicación tab name: search by contents

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 1
Qualità:

Coreano

this function discards the contents of the output buffer.

Spagnolo

siguiente

Ultimo aggiornamento 2011-10-24
Frequenza di utilizzo: 1
Qualità:

Coreano

menu item in recent searches menu that empties menu' s contents

Spagnolo

búsquedas recientesmenu item in recent searches menu that empties menu's contents

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 1
Qualità:

Coreano

create a copy of the current frame, always showing the same contents

Spagnolo

crear una copia del marco actual, que mostrará siempre el mismo contenido

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 1
Qualità:

Coreano

표시title of the page that lets the user choose how to filter the folderview contents

Spagnolo

pantallatitle of the page that lets the user choose how to filter the folderview contents

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 1
Qualità:

Coreano

returns the contents of the cell at the row and offset in the specified msql result set.

Spagnolo

el argumento campo (field) puede ser el desplazamiento del campo, el nombre del campo, o el nombre de la tabla punto nombre del campo (nombretabla.nombrecampo).

Ultimo aggiornamento 2011-10-24
Frequenza di utilizzo: 1
Qualità:

Coreano

session_encode() returns a string with the contents of the current session encoded within.

Spagnolo

session_encode() devuelve una cadena con el contenido de la sesión actual en su interior.

Ultimo aggiornamento 2011-10-24
Frequenza di utilizzo: 1
Qualità:

Coreano

참고: if origstream is network based, this function will block until the whole contents have been downloaded.

Spagnolo

nota:

Ultimo aggiornamento 2011-10-24
Frequenza di utilizzo: 1
Qualità:

Coreano

this will return the length of the contents in the output buffer or false, if output buffering isnt't active.

Spagnolo

this will return the length of the contents in the output buffer or false, if output buffering isnt 't active.

Ultimo aggiornamento 2011-10-24
Frequenza di utilizzo: 1
Qualità:

Coreano

ifx_blobinfile_mode(0): return byte columns in memory, the blob id lets you get at the contents.

Spagnolo

ifx_textasvarchar( 0): usa identificadores de blob para columnas de tipo text en las consultas de selección

Ultimo aggiornamento 2011-10-24
Frequenza di utilizzo: 1
Qualità:

Coreano

create a copy of the current frame, that remains linked to it. this means they always show the same contents: modifying the contents in such a frame will update all its linked copies.

Spagnolo

crear una copia del marco actual, que queda enlazado a él. esto significa que siempre muestran el mismo contenido: modificar el contenido de uno de estos marcos actualizará todas sus copias enlazadas.

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 1
Qualità:

Coreano

an assertion is a test on the characters following or preceding the current matching point that does not actually consume any characters. the simple assertions coded as \b, \b, \a, \z, \z, ^ and $are described above. more complicated assertions are coded as subpatterns. there are two kinds: those that look ahead of the current position in the subject string, and those that look behind it. an assertion subpattern is matched in the normal way, except that it does not cause the current matching position to be changed. lookahead assertions start with (?= for positive assertions and (?! for negative assertions. for example, \w+(?=;) matches a word followed by a semicolon, but does not include the semicolon in the match, and foo(?!bar) matches any occurrence of "foo" that is not followed by "bar". note that the apparently similar pattern (?!foo)bar does not find an occurrence of "bar" that is preceded by something other than "foo"; it finds any occurrence of "bar" whatsoever, because the assertion (?!foo) is always true when the next three characters are "bar". a lookbehind assertion is needed to achieve this effect. lookbehind assertions start with (? = for positive assertions and (?! for negative assertions. for example, (? !foo)bar does find an occurrence of "bar" that is not preceded by "foo". the contents of a lookbehind assertion are restricted such that all the strings it matches must have a fixed length. however, if there are several alternatives, they do not all have to have the same fixed length. thus (? =bullock_bar_donkey) is permitted, but (? !dogs?_bar_cats?) causes an error at compile time. branches that match different length strings are permitted only at the top level of a lookbehind assertion. this is an extension compared with perl 5.005, which requires all branches to match the same length of string. an assertion such as (? =ab(c_bar_de)) is not permitted, because its single top-level branch can match two different lengths, but it is acceptable if rewritten to use two top-level branches: (? =abc_bar_abde) the implementation of lookbehind assertions is, for each alternative, to temporarily move the current position back by the fixed width and then try to match. if there are insufficient characters before the current position, the match is deemed to fail. lookbehinds in conjunction with once-only subpatterns can be particularly useful for matching at the ends of strings; an example is given at the end of the section on once-only subpatterns. several assertions (of any sort) may occur in succession. for example, (? =\d{3})(? !999)foo matches "foo" preceded by three digits that are not "999". notice that each of the assertions is applied independently at the same point in the subject string. first there is a check that the previous three characters are all digits, then there is a check that the same three characters are not "999". this pattern does not match "foo" preceded by six characters, the first of which are digits and the last three of which are not "999". for example, it doesn't match "123abcfoo". a pattern to do that is (? =\d{3}...)(? !999)foo this time the first assertion looks at the preceding six characters, checking that the first three are digits, and then the second assertion checks that the preceding three characters are not "999". assertions can be nested in any combination. for example, (? =(? !foo)bar)baz matches an occurrence of "baz" that is preceded by "bar" which in turn is not preceded by "foo", while (? =\d{3}(?!999)...)foo is another pattern which matches "foo" preceded by three digits and any three characters that are not "999". assertion subpatterns are not capturing subpatterns, and may not be repeated, because it makes no sense to assert the same thing several times. if any kind of assertion contains capturing subpatterns within it, these are counted for the purposes of numbering the capturing subpatterns in the whole pattern. however, substring capturing is carried out only for positive assertions, because it does not make sense for negative assertions. assertions count towards the maximum of 200 parenthesized subpatterns.

Spagnolo

comentarios la secuencia (?# marca el inicio de un comentario el cual continua hastacomentarios la secuencia (?# marca el inicio de un comentario el cual continua hasta el primer paréntesis.

Ultimo aggiornamento 2011-10-24
Frequenza di utilizzo: 1
Qualità:

Attenzione: contiene formattazione HTML nascosta

Ottieni una traduzione migliore grazie a
8,862,602,764 contributi umani

Ci sono utenti che chiedono aiuto:



I cookie ci aiutano a fornire i nostri servizi. Utilizzando tali servizi, accetti l'utilizzo dei cookie da parte nostra. Maggiori informazioni. OK