Using Angle Brackets Around Operators - macromedia COLDFUSION MX 7 Web Application Construction Kit [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

macromedia COLDFUSION MX 7 Web Application Construction Kit [Electronic resources] - نسخه متنی

Ben Forta, Raymond Camden, Leon Chalnick, Angela Buraglia

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید











  • Using Angle Brackets Around Operators


    With the exception of AND, OR, and NOT, all Verity operators require that you use angle brackets around them. This tells Verity that you're interested in actually using the NEAR operator, for example, rather than just trying to search for the word near in your document. The following line is not searching for the word near, but making use of NEAR:


    CRITERIA="Sick <NEAR> Days"

    AND, OR, and NOT, on the other hand, do not need the angle bracketsthey get used very often, and people only infrequently need to search for the actual words and, or, or not in their documents. The following two lines are equivalent:


    CRITERIA="Sick AND Days"
    CRITERIA="Sick <AND> Days"


  • / 281