diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-03-14 07:25:03 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-03-25 14:19:48 +0100 |
commit | 9a8ec36cbda56dfd255a21d8b185e5361162dbfc (patch) | |
tree | 9e8dc904cb82f17fdd7967eac135b802e4d94e48 /doc/ja | |
parent | db0ecc07fe138adf9f44705f6f4167ebd003e2e0 (diff) | |
download | weechat-9a8ec36cbda56dfd255a21d8b185e5361162dbfc.zip |
core: add cut of string in evaluation of expressions
The syntax is: ${cut:max,suffix,string}.
The string is cut after max chars. If the string is cut, the optional suffix is
added after.
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.adoc | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index 3b581ea8b..17860d881 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -2041,11 +2041,20 @@ char *weechat_string_eval_expression (const char *expr, `+prefix<TAB>message+` + `+©+` -| `+${hide:x,value}+` | - 隠す文字を含むテキスト (`value` に含まれる文字をすべて `x` で置換) | +| `+${hide:x,string}+` | + 隠す文字を含むテキスト (`string` に含まれる文字をすべて `x` で置換) | `+${hide:*,password}+` | `+********+` +// TRANSLATION MISSING +| `+${cut:max,suffix,string}+` + + (_WeeChat バージョン 1.8 以上で利用可_) | + String with `max` chars displayed, and optional `suffix` if string is cut. | + `+${cut:4,…,this is a test}+` + + `+${cut:2,>>,àéçôî}+` | + `+this…+` + + `+àé>>+` + | `+${re:N}+` | 正規表現のキャプチャグループ: `0` = マッチするすべての文字列、`1` から `99` = キャプチャされたグループ、`+++` = 最後にキャプチャされたグループ | |