Acrobat support wildcard search?

I am a proofreader through the acrobat 7 professional and I always search some author name or other special characters (esp letter with a accent) in pdf file, can we use the wildcard in acrobat search? you know it's difficult to input the accent on the letter when searching, or there are any better means to that?
Another case, I want to make sure whether the author name (e.g. "Jackson R. Peter") in contributor list is to match the name in article opener, so I copy the name and open the search box to search, it can speed up the proofread and increase the quality. But sometimes the name in contributor list is abbreviated but which is full-spelled in article opener, how to match each other, vice versa.

It depends on:
a) text in the source document
b) how the source application prints/emits out it's content
c) the application used to generate PDF from the source application
Depending on how these interplay, spaces will or will not appear when you copy content. What you get here is " - ". Search typically ignores white spaces, so "David Morales-Morales" should give same results as "David Morales - Morales"

Similar Messages

  • Does Unix support wildcard searches like DOS?

    I need to make my program (which takes arguments) to be able to support a wildcard char. when I first started testing this out, i found that DOS automatically takes care of the wildcard for me:
    ie: java myProgram c:/Alpha/*.txt
    there will be all the text files in that folder as my args array. Does Unix do this for me as well, or will I need to write code to handle this?

    It is well recognized that the common UNIX command-line shells eclipse the Windows command prompt in power. Regardless, we must use the Windows command line to invoke the jre for our Windows users. A good developer cheerfully overcomes OS and hardware constraints.
    Wildcards are useful as startup arguments to classes and for specifying JAR files on the classpath (-cp) option. My experiments and this forum seem to conclude that Java on Windows will glob its command-line arguments transparently to the developer. This is a helpful feature.
    Java on Solaris presumably do this too (after all, why not). Of course, it would not need to: the UNIX shells by default do this on every command. The Windows Console does not do this, rather, the executables themselves must glob.
    Can someone reference Sun documentation that confirms this? I don't know what to search for in order to find this. Without documentation, it is one of those undocumented features that might not be supported in future releases.

  • Problem with: wildcard search in Endeca with Russian language, or adding custom stemming dictionary

    Hi endeca-gurus. I need your assist in typeahead functionality to implement it with endeca (also we should able to search within * from search input-field). So, per documentation, OLT doesn't support wild card search, but latin-1 does it. So,  I tried to switch to Latin-1, but it doesn’t work…maybe I performed some mistakes :
    1.created file stemming file named ru_word _ forms _collection.xml and added it to the MDEX..\conf\stemming\custom directory:
    <?xml version="1.0"?>
    <!DOCTYPE WORD_FORMS_COLLECTION SYSTEM "word_forms_collection.dtd">
    <WORD_FORMS_COLLECTION>
      <WORD_FORMS>
        <WORD_FORM>ноу</WORD_FORM>
        <WORD_FORM>ноут</WORD_FORM>
        <WORD_FORM>ноутб</WORD_FORM>
        <WORD_FORM>ноутбу</WORD_FORM>
        <WORD_FORM>ноутбук</WORD_FORM>
      </WORD_FORMS>
      <WORD_FORMS>
        <WORD_FORM>sm</WORD_FORM>
        <WORD_FORM>sma</WORD_FORM>
        <WORD_FORM>smar</WORD_FORM>
        <WORD_FORM>smart</WORD_FORM>
      </WORD_FORMS>
    </WORD_FORMS_COLLECTION>
    2. set USE _STATIC _WORDFORMS="TRUE" in <appname>.stemming.xml;
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <!DOCTYPE STEMMING SYSTEM "stemming.dtd">
    <STEMMING>
    <STEM_RU ENABLE="TRUE" USE_STATIC_WORDFORMS="TRUE"/>
    </STEMMING>
    3. run baseline_update script
    4. try to search with params in endeca_jspref:
    N=0&Ntk=All&Ntt=ноут*&Nty=1&D=ноут*&Ntx=mode+matchall&Dx=mode+matchall
    And search result is zero.. ((
    What the encoding should be for the edited files? any other suggestions for doing it?
    and, common question : willl endeca support wildcard search for russian in close future??

    Did you enable the dimension for wildcard search?  In dev studio, in the dimension pane there is a button called configure search, click it and check the wildcard search checkbox in the dialog.  I think you may have the stemming entry right but as OLT is fairly new I have not had a chance to test changing the default analyzer as yet. If my suggestion does not work or you have already applied the wildcard flag then I will dig a little deeper.
    best
    Terry

  • Wildcard search support in XPath

    Hi all,
    I am using XPath in querying XML file. My application uses an XML file as a database. I am having a search portal in which user can give wildcard search like name = "M*" etc. As I am using internally XPath to read a particular NodeList from XML, I need to do a wild card search using XPath. When I saw the XPath document it only gives //* etc but not like //M*. So I want to know a way by which I can do this wild card search using XPath.
    To be more clear of my requirement consider the below xml:-
    <?xml version="1.0" encoding="UTF-8"?>
    <bookstore>
    <book>
    <title lang="eng">Harry Potter</title>
    <price>29.99</price>
    </book>
    <book>
    <title lang="eng">Learning XML</title>
    <price>39.95</price>
    </book>
    <book>
    <title lang="eng">Learning VSS</title>
    <price>39.95</price>
    </book>
    </bookstore>
    I want the XPath query to return all the books having title that starts with "Learning" string.
    Thx in advance
    MK.

    There are ways to do what you want, but they will require some effort to convert the user's wildcard specification into something that works with XPath.
    You can have a search like
    /book[starts-with( title, 'L')]
    should find the Lerning XML and Learning VSS books.
    Dave Patterson

  • Wildcard search with catsearch on Oracle 10g

    Wildcard search problem is being discussed many times, however the solutions provided did not solve the problem.
    I am using catsearch to take its advantages and return results at a faster rate. Aim is to simulate a like '%abc%' using catsearch in 10g.
    Following are the steps to reproduce the problem.
    CREATE TABLE test
       (name VARCHAR2(60))
    INSERT ALL
    INTO test VALUES ('VCL Master')
      INTO test VALUES ('VCL Master S.')
      INTO test VALUES ('VCL Master S.A. Compartment 1')
      INTO test VALUES ('VCL MasterS.A. Compartment 2')
      INTO test VALUES ('VCL Master., S.A.')
      INTO test VALUES ('KCL Master Corp.')
      SELECT * FROM DUAL
    begin
    ctx_ddl.create_preference('Jylex', 'basic_lexer');
    ctx_ddl.set_attribute('Jylex','SKIPJOINS','.-=[];\,/~!@#$%^&*+{}:"|<>?`§´¨½¼¾¤£€©®''');
    end;
    begin
        Ctx_Ddl.Create_Preference('wildcard_Jylex', 'BASIC_WORDLIST');
        ctx_ddl.set_attribute('wildcard_Jylex', 'wildcard_maxterms', 15000) ;
    end;
    CREATE INDEX test_inx ON test(NAME)
    INDEXTYPE IS CTXSYS.CTXCAT
    PARAMETERS('STOPLIST CTXSYS.EMPTY_STOPLIST
    LEXER     Jylex
    WORDLIST wildcard_Jylex')
    problem1:
    select * from test where catsearch(name, 'CL Mast*', NULL)>0 --- no results returned
    problem 2:
    when I run the following query on the actual column of my table with 3 million records,
    select * from XXXX where catsearch (NAME, 'VCL Master S*', NULL) > 0
    I get the following error.
    DRG-51030: wildcard query expansion resulted in too many terms
    I have used () and "". Did a lot of R&D and still I am not able to a solution that resolves both of the problems.
    Suggestions will be much appreciated.
    Thanks.

    This post has nothing to do with Oracle Objects.  Perhaps some moderator will move it to the Oracle Text sub-forum/space, where it belongs.
    Your search for 'CL Mast*' did not find any rows because there aren't any rows that match that criteria.  If you want to return rows that have that string, then you need to add a leading wildcard.  Technically CTXCAT indexes and CATSEARCH do not support leading wildcards, but you can use two asterisks as a workaround, so you can search for '**CL Mast*'.
    Your wildcard_maxterms is set to 15000, so if there are more than 15000 words that begin with 's' in your 3 million records, then it will result in an error.  If you upgrade to Oracle 11g, then you can set the wildcard_maxterms higher or to unlimited by setting it to 0, but that may cause your system to run out of memory.  Most applications trap these errors and return a simple message to the user, indicating that the search for s* is too broad and to narrow the search.
    I would use a CONTEXT index with CONTAINS instead of CTXCAT and CATSEARCH.  It supports leading wildcards and you can index substrings for faster searches.  If you want it to be like the CTXCAT index then you can make it transactional.

  • Wildcard search + thesaurus on xquery

    Hi All,
    I just realized that thesaurus matching is not supported with wildcard search.
    Here is current codes.
    <Searches>
    if (fn:exists(http:get-query-parameter("Ntt"))) then
    for $paramNtt in http:get-query-parameter("Ntt")
         return <Search Mode="AllPartial" Key="i_products_st">{concat("*",concat($paramNtt,"*"))}</Search>
    else ()
    </Searches>
    So, now i am thinking that I can change to somthing like following eql
    <EqlExpression>
    collection()/record[ endeca:matches(.,"i_products_st",$paramNtt,"AllPartial") or endeca:matches(.,"i_products_st",concat("*",concat($paramNtt,"*")),"AllPartial") ]
    </EqlExpression>
    though I didn't test it out yet. I guess there might be some other solution.
    So, I would like to ask if any better way can solve this issue.
    Thanks,

    Are you trying to retrieve the union of (a) records that match the user's search term as literally entered, perhaps expanded by thesaurus and (b) records that match the user's search term as a substring via wildcard?
    If so, then EQL can express that logic. For example, suppose that:
    * the thesaurus contains an entry "truck" <-- --> "lorry"
    * the user enters "truck" in the search box
    EQL: collection()/record[ endeca:matches(.,"i_products_st","truck","AllPartial") or endeca:matches(.,"i_products_st","\*truck\*","AllPartial") ]
    This search filter expression would match records containing: { truck, lorry, trucker, trucking, struck, ... }
    This kind of infix wildcard expression has very broad recall. In this case you would probably also want to assert a relevance ranking strategy based on matching the user's original entry "truck", using Nrr.
    Also worth thinking about search inputs that are multiple words like "truck driver" - would you want to implicitly wildcard every token separately e.g. \*truck\* \*driver\*
    Finally, definitely worth thinking about search inputs that give pathological queries when implicitly wildcarded, like very short tokens e.g. a ==> \*a\*

  • Wildcard Search requirement for Items description and BP Name

    Hi Friends,
    I want to know is there any feature in Item Master data or Business Partner Master Data in which search is done by putting middle or last name. For example the Item Name is Electric Motar 345 Gear
    and when the user wants to search it by say Motar 345 then all items which inclused Motar 345 should come highlighted.
    Same for BP also its required as BP name is Glem Tex Japan Pvt Limited and now user wants to search the BP by say Tex Japan and all BP which includes the word Tex Japan should come.
    Is there any possibilities by which this can be achieved. Its somewhat wildcard search required. I heared its possible in B1.
    Regards,
    Kamlesh Gupta

    Dear Sridharan,
    I have exactly put the same as 'Motar 345 after Opening the Item Master Data and in find mode pressed * Enter and put the above in Find and selected Item Description. But sorry to say that nothing is coming and the cursor goes in the last item master data.
    What might be the problem can you please tell me.
    Regards,
    Kamlesh Gupta

  • Oracle BI Publisher - Passing multiple wildcard search to a bind variable

    Hi,
    Please help me in resolving the below mentioned issue:
    I have developed a report in oracle BI Publisher with a SQL query.
    While scheduling the report to run I used to pass mutilple parameters like CGAMSVC08,RLCSVC51
    If the pass the parameter with wildcard search like C% it works.
    When I pass two or more parameter values with wildcard search like C%,R% its not working.
    Could you please let me know how should I give the bind variable in the SQL query. Currently I'm paramater like the one shown below for passing multiple paramaters:
    Where (',' || :PRMRETRID || ',' like '%,'||RL.RETROFIT_ID|| ',%')
    Edited by: user1101445 on May 23, 2012 2:02 AM

    HI Tyler.
    Well, here's the latest.
    I found this little gem in the BIEE 10.1.3.3.3 Release Notes Documentation...
    This issue applies to Versions 10.1.3.3, 10.1.3.3.1, 10.1.3.3.2, and 10.1.3.3.3.
    Reports that use the BI Publisher data template as the data model may fail with the
    following error: "Data not defined."
    This error will occur if you defined a parameter in your data template but you do not
    pass a value to it via the user interface. If you do not specify this parameter in the "Parameters" section of the report definition that you created using the BI Publisher Edit Report interface, then you will receive the error.
    To work around this issue, either define the parameter in the Edit Report interface or remove the parameter from the data template.
    That bit is now working.
    Having set this up and using your guide it works if my SOAP parameters declaration passes a single value like this...
    <parameterNameValues>
    <item>
    <name>P_INVOICE_ID</name>
    <multiValuesAllowed>true</multiValuesAllowed>
    <values>
    <item>16641</item>
    </values>
    </item>
    </parameterNameValues>
    But if I try and pass two or more like this...
    <parameterNameValues>
    <item>
    <name>P_INVOICE_ID</name>
    <multiValuesAllowed>true</multiValuesAllowed>
    <values>
    <item>16641,18421</item>
    </values>
    </item>
    </parameterNameValues>
    BIP states "java.sql.SQLException: ORA-01722: invalid number"
    My SQL where clause is..
    <sqlStatement name="Q1">
    <![CDATA[select * from vw_invoice_summary
                   where invoice_summary_id IN (:P_INVOICE_ID)]]>
    </sqlStatement>
    And the BIP error records the parameter value as P_INVOICE_ID 16641,18421 (which are legit invoice IDs)
    In summary, works if I pass one invoice ID, fails if I pass two or more.
    Any ideas? Or do you reckon this is now a post for the BIP forum?
    Kind regards.
    Simon

  • Acrobat Pro 9 search feature seems broken....

    I have occasional need to search a company schedule published in .pdf format. When I recently installed Acrobat Pro 9 on my WinXP machine I let it become the default application for opening .pdf files. However, if I open the schedule document in question in Acrobat Pro the search engine doesn't work.
    By doesn't work I mean I search for a word and the search stops on some unrelated word, or partial word, and never finds what I'm looking for. If I open the same document in Acrobat Reader 8.1 the same search still works fine.
    I've tried all the search options in Pro full word, etc) I can find to no avail. Does anyone have any suggestions what the problem might be?
    tia

    I had this problem with some of our users.
    I solved it by opening the PDF file in question.
    I went to File>Preferences>Search
    I then clicked "Purge Cache Contents"
    That appeared to resolve the issue.

  • SharePoint 2013 Online - Default Wildcard Search

    Is there a way I can change SP to always append a * to the end of every search?
    We're using the Online version (tied in with O365), and it has been requested that we have every search be a wildcard search by default. I found walkthroughs for SharePoint 2010, but the interface and menus have changed in 2013.

    You can edit the Search Results Web Part. Then from the web part properties, click on Change Query.
    Now in the popup modal window, click on "Advanced Mode".
    In Query text, you can use {SearchBoxQuery}*

  • Address Book wildcard searching LDAP

    With Address Book under Mac OS X 10.4 (Tiger), and 10.5 (Leopard) it was possible to do a wildcard search of an LDAP server for contacts. You did this by typing *. or ** in the search box in the top right.
    Unfortunately, this no longer seems to work in Address Book in Mac OS X 10.6 (Snow Leopard).
    Does anyone know of an alternative way of doing this?

    Do you use iCloud? If so, try going to the System Preferences then iCloud and unchecking Contacts. It will warn you about deleting the contacts from your Mac. If you know your other devices on iCloud have the correct contacts(or icloud.com) then this should be completely safe. Once you've okayed them to be removed, immediately recheck contacts.
    Please let me know if this works. Thanks!
    Autumn

  • Can't perform wildcard searches

    Hello world,
    We're using Portal 3.0.9.8.1 with Patch 1949492 installed. This is on 8.1.7.2.4 SE Database.
    When performing a search, cannot include wildcards. E.g. a search for 'test' returns only the exact word 'test'. It does not return 'testing','tester','test1','detests'.
    This is against what Portal's Own Help file states. Click 'Search Tips' on the 'Advanced Search Page' and you are told the following:
    The % character is interpreted literally, so do not include it as a wildcard. If you enter 100% as your search term, search finds content that contains the text 100%, not 1000 or 10000. Wildcards are automatically added to the beginning and end of your search term, so searching for 100 will automatically return content that contains 1000 and 10000.
    If interMedia is installed and enabled, search automatically uses the stem operator to search for words that have the same linguistic root as the specified word. For example, if you specified the word lift, the search feature will return content that contains the words lift, lifting, lifted, etc.
    Both of these statements are blatantly untrue as it does neither.
    Any thoughts Oracle? Has anyone else managed a wildcard search?
    Frustrated
    Dave

    I've just verified in 3.0.9 and wildcards are applied as specified in the documentation, when Text is not enabled. If your search term is 'test' then the SQL query will have the search term %test%. Literal % signs in your search term are escaped, so that if your search term was test% then the query would be for %test^%% escape ^.
    There are a few things to remember. When searching WITHOUT Intermedia Text enabled the search will only match terms in the title and description of the item.
    When, Intermedia Text is enabled, all of the content will be searched. However, as indicated in the documentation, the stem operator will be used. So if you search for 'test' the query is now a Text contains('$test') type query. The default operator is the '$' stem operator, which match terms that have the same linguistic root. So if your search term is 'test' it should match 'tests' or 'testing' or 'tested'. However, it will not match 'test1'. Please refer to the Intermedia Text documenation for more information on the stem operator and Text searching in general.

  • Wildcard searches for WBS element

    HI Experts,
    Can anyone give a example prgm for wildcard searches to WBS element LIPS-PS_PSR_PNR field.
    Thanks in advance.

    Hi,
    This is standard system behaviour. Purchase requisitions generated by MRP do not add to commitment. However, when these PRs are converted into POs, the POs add to commitment. Purchase requitions genertaed directly from PS, without the intervention of MRP always add to commitments.
    Regards
    Muraleedharan.R

  • How to do wildcard search?

    Does anyone know I can do wildcard search like *.jpg or my**.jpg? And yes, don't tell me to use the Terminal and copy and paste path.

    Spotlight searches are pretty much wildcard searches, you just don't need the wildcards.
    However, if you want to do it, look at a Raw Query. This post shows some of its capabilities using the Terminal command mdfind, but you can use a Raw Query in the Finder and he talks about how to select that from the criteria menu.
    http://blog.scottlowe.org/2012/07/25/advanced-spotlight-queries-in-the-mac-gui/
    With a Raw Query, you don't use the mdfind command, but the rest of the search is entered into the Find window.
    Also, see here: https://developer.apple.com/library/mac/documentation/carbon/conceptual/spotligh tquery/concepts/queryformat.html

  • Wildcard search in SharePoint 2013.

    Hi ,
    I have SharePoint 2013 farm, which is migrated from 2010 to 2013. After migrating to SharePoint 2013, wild card search is not working. Could someone please help me in activating wildcard search for already configured search service application in SharePoint
    2013.
    Thanks,
    Badri.
    Badri

    Hi
    I am trying to do a partial search without using wildcard by setting the query text of the search result source to {searchTerm}*. The search works and gives me the right results. However,
    the results look differently.
    When I do search for abcd*, the words that are started with abcd in the Title, Summary and Path parts are highlighted.
    And when I do search for abcd, I have exactly the same search results back. but the words are not highlighted. and besides that, the Summary text is different.
    I believe even if I had the right search result items back, the Title, Summary, and Path properties are created based on the searchEntry. Is there any way to make the items look exactly the same without manipulating with the searchEntry value?
    Thank you,
    Tatiana

Maybe you are looking for

  • BC E-commerce integrated with Subscription Based Web Application

    I am considering using BC for my company's corporate website as well as the online store.  We sell a subscription based web application which will have 3 or more flavors (products) and will need to bill customers on a recurring monthly or annual basi

  • Why is Adobe Bridge not showing the changes I had done on Camera Raw?

    Dear all, I am trying out Adobe Bridge and discovered that after editing in Camera Raw (ACR), the changes was not shown on the thumbnail. I am using photo (1), which is the top left corner photo, as my main and tried to apply changes to the remaining

  • 2007 MacBook Pro CPU exceeds 200° F

    I've been searching for average running temperatures for MacBook Pros and can't seem to find the consensus. My late 2007 MBP regularly runs into the high 100°'s F (monitored my iStat) and the hottest component is always my GPU or CPU. The GPU will re

  • Need the Org Unit till the parent node the employee is attached to

    Hi, We have a requirement to find out the Sales Org the User is attached to as well get list of all sales org above it till the main node. Basically its reporting for Org Unit to the upper chain. I am sure there should be some standard FM or report t

  • Need output format for trigger  program

    Hello everyone ; https://forums.oracle.com/message/11078921#11078921 Above link is reference . It's also my own thread related to   this discussion. SQL> desc user_login Name                                                              Null?    Type