x

Main chapters

  1. LimeSurvey Cloud vs LimeSurvey CE
  2. LimeSurvey Cloud - Quick start guide
  3. LimeSurvey CE - Installation
  4. How to design a good survey (Guide)
  5. Getting started
  6. LimeSurvey configuration
  7. Introduction - Surveys
  8. View survey settings
  9. View survey menu
  10. View survey structure
  11. Introduction - Questions
  12. Introduction - Question Groups
  13. Introduction - Surveys - Management
  14. Survey toolbar options
  15. Multilingual survey
  16. Quick start guide - ExpressionScript
  17. Advanced features
  18. General FAQ
  19. Troubleshooting
  20. Workarounds
  21. License
  22. Version change log
  23. Plugins - Advanced
 Actions

Translations

Translations:ExpressionScript - Presentation/111/ja

From LimeSurvey Manual

演算子 a b 結果
+ (単項演算子) +a N/A false
! !a N/A false
== (またはeq) a == b N/A 5 false
== (またはeq) a == b N/A 0 false
== (またはeq) a == b N/A N/A false
!= (またはne) a != b N/A 5 false
!= (またはne) a != b N/A N/A false
!= (またはne) a != b N/A 0 false
> (またはgt) a > b N/A 5 false
>= (またはge) a >= b N/A 5 false
< (またはlt) a < b N/A 5 false
<= (またはle) a <= b N/A 5 false
and a and b N/A 5 false
and a and b N/A N/A false
or a or b N/A N/A false
or a or b N/A 5 false
+ a + b N/A 5 false
* a * b N/A 5 false
/ a / b 5 N/A false
() (a) N/A false
(exp) (a && b) N/A 5 false
(exp) 演算子 (exp) (b + b) > (a && b) N/A 5 false
関数 sum(a,b,b) N/A 5 false
関数 max(a,b) N/A 5 false
関数 min(a,b) N/A 5 false
関数 implode(', ',a,b,a,b) N/A 5 false
関数 if(a,a,b) N/A 5 false
関数 is_empty(a) N/A false
関数 is_empty(a) 0(または空白) true
関数 !is_empty(a) N/A false