diff options
Diffstat (limited to 'doc/it/weechat_plugin_api.it.txt')
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index 3bde8d1d2..1edb181f5 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -871,41 +871,6 @@ match3 = weechat.string_match("abcdef", "*def", 0) # 1 match4 = weechat.string_match("abcdef", "*de*", 0) # 1 ---- -==== weechat_string_replace - -Sostituisce tutte le ricorrenze di una stringa con un'altra. - -Prototipo: - -[source,C] ----- -char *weechat_string_replace (const char *string, const char *search, - const char *replace); ----- - -Argomenti: - -* 'string': stringa -* 'search': stringa da sostituire -* 'replace': sostituzione per la stringa 'search' - -Valore restituito: - -* la stringa dopo 'search' sostituita da 'replace' (deve essere liberata - chiamando "free" dopo l'uso) - -Esempio in C: - -[source,C] ----- -char *str = weechat_string_replace ("test", "s", "x"); /* result: "text" */ -/* ... */ -free (str); ----- - -[NOTE] -Questa funzione non è disponibile nelle API per lo scripting. - ==== weechat_string_expand_home _WeeChat ≥ 0.3.3._ @@ -1297,6 +1262,41 @@ highlight = weechat.string_has_highlight_regex(string, regex) highlight = weechat.string_has_highlight_regex("my test string", "test|word2") # 1 ---- +==== weechat_string_replace + +Sostituisce tutte le ricorrenze di una stringa con un'altra. + +Prototipo: + +[source,C] +---- +char *weechat_string_replace (const char *string, const char *search, + const char *replace); +---- + +Argomenti: + +* 'string': stringa +* 'search': stringa da sostituire +* 'replace': sostituzione per la stringa 'search' + +Valore restituito: + +* la stringa dopo 'search' sostituita da 'replace' (deve essere liberata + chiamando "free" dopo l'uso) + +Esempio in C: + +[source,C] +---- +char *str = weechat_string_replace ("test", "s", "x"); /* result: "text" */ +/* ... */ +free (str); +---- + +[NOTE] +Questa funzione non è disponibile nelle API per lo scripting. + ==== weechat_string_replace_regex _WeeChat ≥ 0.4.4._ |