-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
string.Template identifier #1
Comments
ん, けっきょくどういうことですか? |
英語で書くのかなと思って途中で挫折してましたw |
pythonで$識別子を使った例ってどんな感じなのでしょうか (Python素人です) |
すいません、大本のドキュメントを示してなかったですね |
なるほど, 理解しました
以下の三つのパターンを考えて見ましたが, 使いやすさではキーワードが楽ですね. (substitute ":who likes :what" '((:who . "tim") (:what . "kung pao"))) (substitute ":who: likes :what:" '((":who:" . "tim") (":what:" . "kung pao"))) (substitute ":who: likes :what:" '((|:who:| . "tim") (|:what:| . "kung pao"))) |
substituteは識別子がたりないときにエラーにするのですね >>> d = dict(who='tim') >>> Template('Give $who $100').substitute(d) Traceback (most recent call last): [...] ValueError: Invalid placeholder in string: line 1, col 10 >>> Template('$who likes $what').substitute(d) Traceback (most recent call last): [...] KeyError: 'what' 文字列中では, :foo:か|foo|でしょうか? |
:foo:にした理由ですが、オリジナルの場合、${foo}ooooとすることによって識別子を他とまざらないようにすることができるのですが、:foo:ooooという感じで再現できるかなというところでした。 |
お, なるほど. |
なるほど、できたらやってみます |
とりあえず適当なものを実装しました. TODO: 使い方は (clap-string:substitute (clap-string:make-template "$$hoge $hoge $a $$odiejw oiajdeoj fuga piyo ${hoge fuga} $aabbcc") (clap-builtin:dict '(("hoge" . "HOGE") ("a" . "A") ("hoge fuga" . "HOGE FUGA") ("aabbcc" . "AABBCC")) :test #'equal)) |
identifier form for cl
The text was updated successfully, but these errors were encountered: