Ask a Question related to Adobe Acrobat Windows, Design and Development.

  1. #1

    Default Wildcards

    Why isn't it possible to search with wildcards (like * and ?) in Acrobat 6? In Acrobat 5 it used to be possible. What is the alternative?
    Ineke_Huysman@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Using wildcards in a WHERE statement
      I'm in the process of converting from Access to SQLServer and need help with using wild cards in a WHERE statement. When the following statement is...
    2. File copy wildcards
      I have a directory with files named: ex0915 dx0915 gg0915
    3. Finding filenames using wildcards
      I have an interesting challenge. I have a client that is putting pictures into a single folder on the web server. The files are specific in that...
    4. Wildcards in rename()?
      Hi all! Do any of you know if wildcards are accepted when calling rename() function? Thanks/Alvaro
  3. #2

    Default Re: Wildcards

    In Acrobat Pro and Reader 6.01 the help specifies that * and ? cannot be used to searh in Acrobat 6 Indexes, and stemming searches. It does not say you can't use them in other forms of search. But just a few experiments show that * and ? are interpreted as literal characters and not wildcard characters.

    Thanks for pointing this out. Yet another example of useful features from 5 missing in 6. In this case the search engiine from 5 was replaced by a "better" one for 6.
    Cheers
    Ian
    Ian_Burton@home_in_Paris.fr Guest

  4. #3

    Default Re: Wildcards

    is it not true that you don't need wildcards in the 6.0 search functionality?

    the search string 'day' should find

    day
    today
    monday
    days

    etc etc
    Ian_Mellors@adobeforums.com Guest

  5. #4

    Default Re: Wildcards

    But wouldn't a search for SGML, XML, and HTML require separate searches instead of one search for *ML? Would stemming be able to sort out numbers in the range 1110222 and 1119222 or would there need to be ten searches, instead of one search for 111?222? How does one find all the acrrd.* file names in a manual because you don't know which one you really need information about?

    I agree there's lots can be done in the advanced search with all the options, but there seems to be certain things that could be done more conveniently with wildcards. Instead all the individual searches have to be done for the literals.
    Cheers
    Ian
    Ian_Burton@home_in_Paris.fr Guest

  6. #5

    Default Re: Wildcards



    But wouldn't a search for SGML, XML, and HTML require separate searches
    instead of one search for *ML?




    No, search for "ML."
    W_T_Allen@adobeforums.com Guest

  7. #6

    Default Re: Wildcards

    Clearly the *ml was not a good example for my point. But I tried it just the same. In the collection there were 146 html, 628 xml, and 1888 sgml - Total 2662. There are 2660 instances of ml. These are the search results numbers. Now I wonder how long it would take to work out what's going on here. Nothing like reliable predictable searches that give you confidence. If there were more ml than the total of sgml, html, and xml I would not have been concerned, but how can search possibly find less? Maybe it's not quite so reliable after all.

    Wildcards can be a timesaver - nice to have when you need them. Reliable search results are more than "nice to have".
    Cheers
    Ian
    Ian_Burton@home_in_Paris.fr Guest

  8. #7

    Default Re: Wildcards

    You're preaching to the choir, man, I agree 110%.
    W_T_Allen@adobeforums.com Guest

  9. #8

    Default Re: Wildcards

    I don't have access to AA6 "Pro" at this moment, but I have a memory that wildcards are available under the "Advanced" search features (I could be wrong).
    Fr._Watson@adobeforums.com Guest

  10. #9

    Default Re: Wildcards

    When I tried * and ? in Acrobat Pro 6.01 Advanced search they seemed to be treated as literal characters and not Wildcards (as I reported in Post #1).

    However, the help phrasing on this subject is misleading. There are a couple of descriptions of where * and ? cannot be used, thus implying that there are other situations in which these characters can be used. The help does not specify where they can be used. Experiements indicate that they cannot be used. Still open to corrections though.
    Cheers
    Ian
    Ian_Burton@home_in_Paris.fr Guest

  11. #10

    Default wildcards

    Is there a function out there to tell me if two Strings are identical, if
    there are multiple wildcards involved, for example

    $s =="A*B*C*";

    evaluates to true for, say "ABERCROMBIE." Something that works for any
    number and placement of wildcard characters like this? Thanks, Ike


    Ike Guest

  12. #11

    Default Re: wildcards

    *** Ike wrote/escribió (Fri, 09 Jul 2004 13:03:05 GMT):
    > Is there a function out there to tell me if two Strings are identical, if
    > there are multiple wildcards involved, for example
    >
    > $s =="A*B*C*";
    >
    > evaluates to true for, say "ABERCROMBIE." Something that works for any
    > number and placement of wildcard characters like this? Thanks, Ike
    This is called "regular expressions". Check manual for preg_match(), ereg()
    and eregi().

    Of course, you need to write appropriate regular expressions (that's the
    difficult part). In your example it could be something like this:

    ^A(.*)B(.*)c

    Example not tested!


    --
    --
    -- Álvaro G. Vicario - Burgos, Spain
    --
    Alvaro G Vicario Guest

  13. #12

    Default Re: wildcards

    preg_match("/[ABC]+/", $s) // Matches all A's, B's, or C's

    There may be a better way, as I am not as proficient in regexp as I
    would like to be. But maybe this could get you going in the right
    direction.

    On Fri, 09 Jul 2004 13:03:05 GMT, "Ike" <rxv@hotmail.com> wrote:
    >Is there a function out there to tell me if two Strings are identical, if
    >there are multiple wildcards involved, for example
    >
    >$s =="A*B*C*";
    >
    >evaluates to true for, say "ABERCROMBIE." Something that works for any
    >number and placement of wildcard characters like this? Thanks, Ike
    >
    eclipsboi Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139