0
Q
スキーム文字比較
A
答えて
2
コードに引用されていないシンボルは、リストの比較において変数
(define r 'x) ; define the variable r to be the symbol x
(eq? (car test) r) ; ==> #f (compares the symbol r with symbol x)
(eq? (cadr test) r) ; ==> #t (compares the symbol x with the symbol x)
(eq? (car test) 'r) ; ==> #t (compares the symbol r with the symbol r)
シンボルある
(define test-list '(fi fa foo))
(define test-symbol 'fi)
(eq? (car test-list) test-symbol) ; ==> #t (compares fi with fi)
(eq? 'fi 'fi) ; ==> #t (compares fi with fi)
文字列の比較(質問のタイトルが文字ではない記号についてです)での文字:
(define test-string "test")
(define test-char #\t)
(eqv? (string-ref test-string 0) test-char) ; ==> #t (compares #\t with #\t)
(eqv? #\t #\t) ; ==> #t (compares #\t with #\t)
+0
ありがとう!あなたの答えは本当に役に立ちます。 –
関連する問題
- 1. 文字列比較
- 2. 比較文字列
- 3. 比較文字<
- 4. 文字列の比較 - Java
- 5. Jinja2テンプレート - 文字列比較
- 6. Pythonの文字列比較
- 7. 文字列比較は
- 8. PHPの文字列比較
- 9. Cでの文字比較
- 10. 文字列/パスの比較
- 11. フラスコ比較文字列
- 12. PHPの文字列比較
- 13. バイナリ文字列比較
- 14. DateTime、文字列の比較
- 15. Python文字列の比較
- 16. Java:文字列の比較
- 17. Javaの文字列比較
- 18. UNIXソート - 文字比較アルゴリズム
- 19. Java:文字の比較
- 20. 文字列比較:100
- 21. bash文字列比較
- 22. AngularJS文字列比較
- 23. 比較文字列が
- 24. C++文字列の比較
- 25. JavaScriptを比較文字列
- 26. グローブ文字列の比較
- 27. 文字のモジュール比較
- 28. Java文字列比較
- 29. SQL:文字列比較
- 30. 文字列比較VBA
「r」、「x」のシンボルにアクセスする方法'car'、' cadr'、 'caddr'のように' nd '-'を使いますか? – Sylwester
いいえ、私はどのように私は実際に 'エラー'を返すので、** r **と** r **を比較しているかのように、 –
'(定義する(テストを区別する)(等しい?(車のテスト) '))'と書くべきです。 – Renzo