How to finds specific words in each sentence?

import java.io.*;
import java.text.*;
import java.util.*;
public class FindingWordsSpecific {
     static String[] days = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "every Tuesday"};
  public static void main( String args[] ) throws IOException {
           // the file must be called 'myfile.txt'
           String s = "myfile.txt";
           File f = new File(s);
           if (!f.exists())
                System.out.println("\'" + s + "\' does not exit. Bye!");
                return;
           BufferedReader inputFile = new BufferedReader(new FileReader(s));
           String line;
           int nLines = 0;
           while ((line = inputFile.readLine()) != null)
                nLines++;
               System.out.println(findTheIndex(line));     
           inputFile.close();
       public static String findTheIndex(String sentence){
            String result = "";
            String[] s = sentence.split("\\s");
          for (String s1: s){
               for (String s2: days){
                    if (s1.equalsIgnoreCase(s2)) {
                         if(s2.matches("every Tuesday")){
                                         }else if (s2.matches("every Wednesday")){
                                          }What is wrong with it because I tried to find "every Tuesday" in
myfile.txt: "Go fishing every Tuesday and every Wednesday"
There is big problem with split statement because it takes each word not more than a word.
I need to have "every Tuesday" not "Tuesday". How to make it correct codes?

I am going to give you a picture of how the output will look.
Here are two sentences from myfile.txt:
Go fishing every Tuesday and every Wednesday
Meet with research students on Thursday
I need to read from myfile.txt and to find specific words in each sentences like this output:
Every Tuesday : Go fishing
Every Wednesday : Go fishing
Thursday : Meet with research students
Ok. make sense? Now I am trying to figure out how to find specific words in each sentence from myfile.txt.
That is why I have difficult with the splits statement and loops. Like this:
       public static String findTheIndex(String sentence){
            String result = "";
            String[] s = sentence.split("\\s");
          for (String s1: s){
               for (String s2: days){
                    if (s1.equalsIgnoreCase(s2)) {
                         if(s2.matches("every Tuesday")){
                         }else if(s2.matches("every Wednesday")){
                         }else if(s2.matches("Thursday")){
                         }else{
                              System.out.println("That sentence is not working");
            return result;
  }So look at the "Thursday" it is working the output because I have split statement to give me only one word not more than
a word in sentence. So there is big problem with more than a word in sentence like this "every Tuesday" and it won't work at all because of split. Could you please help me how to do that? I appreciated for that help. Thanks.

Similar Messages

  • Mail - Auto capitalize first word in each sentence

    When composing a message in mail is there a way to turn on auto capitalization for the word beginning each sentence?

    As far as I can tell you cant auto capitalize the first word of each sentence. I did however find out how to turn "i" into "I in case that is bugging you as well
    Go into System Preferences
    Click on Language and Text
    Choose the "Text" box on the menu bar
    It will bring you to the text substitution thingamajig where you can replace "i" with an "I". Once done it will work on Mail as well as most applications system wide.
    Hope that helps a little

  • How to find Installation Date for each SQL installation

    Dear All,
    I need a basic info. How to find installation date of each SQL instance (My environment running with multiple standalone/cluster instances)?
    So, I need a query to find installation date easily (I don't want to check it in registry by manual). Thanks in advance...

    Hi Balmukund
    This is the same answer that (1) Prashanth posted
    from the start, letter on (2) Stan posted
    this again with the same link, and now for the third time, (3) you posted it with the same link :-)
    * This answer is correct for specific instance.
    The OP asked a solution for several instances. Therefore he should execute this on each instance. As I mentioned he can do it dynamically on all instances, for example using powershell (basic logic is, first find all instances and than post this query in a
    loop).
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]
    Then your answer is correct :)
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • How to find the level of each child table in a relational model?

    Earthlings,
    I need your help and I know that, 'yes, we can change'. Change this thread to a answered question.
    So: How to find the level of each child table in a relational model?
    I have a relacional database (9.2), all right?!
         O /* This is a child who makes N references to each of the follow N parent tables (here: three), and so on. */
        /↑\ Fks
       O"O O" <-- level 2 for first table (circle)
      /↑\ Fks
    "o"o"o" <-- level 1 for middle table (circle)
       ↑ Fk
      "º"Tips:
    - each circle represents a table;
    - red tables no have foreign key
    - the table in first line of tree, for example, has level 3, but when 3 becomes N? How much is N? This's the question.
    I started thinking about the following:
    First I have to know how to take the children:
    select distinct child.table_name child
      from all_cons_columns father
      join all_cons_columns child
    using (owner, position)
      join (select child.owner,
                   child.constraint_name fk,
                   child.table_name child,
                   child.r_constraint_name pk,
                   father.table_name father
              from all_constraints father, all_constraints child
             where child.r_owner = father.owner
               and child.r_constraint_name = father.constraint_name
               and father.constraint_type in ('P', 'U')
               and child.constraint_type = 'R'
               and child.owner = 'OWNER') aux
    using (owner)
    where child.constraint_name = aux.fk
       and child.table_name = aux.child
       and father.constraint_name = aux.pk
       and father.table_name = aux.father;Thinking...
    Let's Share!
    My thanks in advance,
    Philips
    Edited by: BluShadow on 01-Apr-2011 15:08
    formatted the code and the hierarchy for readbility

    Justin,
    Understood.
    Nocycle not work in 9.2 and, even that would work, would not be appropriate.
    With your help, I decided a much simpler way (but there is still a small problem, <font color=red>IN RED</font>):
    -- 1
    declare
      type udt_roles is table of varchar2(30) index by pls_integer;
      cRoles udt_roles;
    begin
      execute immediate 'create user philips
        identified by philips';
      select granted_role bulk collect
        into cRoles
        from user_role_privs
       where username = user;
      for i in cRoles.first .. cRoles.count loop
        execute immediate 'grant ' || cRoles(i) || ' to philips';
      end loop;
    end;
    -- 2
    create table philips.root1(root1_id number,
                               constraint root1_id_pk primary key(root1_id)
                               enable);
    grant all on philips.root1 to philips;
    create or replace trigger philips.tgr_root1
       before delete or insert or update on philips.root1
       begin
         null;
       end;
    create table philips.root2(root2_id number,
                               constraint root2_id_pk primary key(root2_id)
                               enable);
    grant all on philips.root2 to philips;
    create or replace trigger philips.tgr_root2
       before delete or insert or update on philips.root2
       begin
         null;
       end;
    create table philips.node1(node1_id number,
                               root1_id number,
                               node2_id number,
                               node4_id number,
                               constraint node1_id_pk primary key(node1_id)
                               enable,
                               constraint n1_r1_id_fk foreign key(root1_id)
                               references philips.root1(root1_id) enable,
                               constraint n1_n2_id_fk foreign key(node2_id)
                               references philips.node2(node2_id) enable,
                               constraint n1_n4_id_fk foreign key(node4_id)
                               references philips.node4(node4_id) enable);
    grant all on philips.node1 to philips;
    create or replace trigger philips.tgr_node1
       before delete or insert or update on philips.node1
       begin
         null;
       end;
    create table philips.node2(node2_id number,
                               root1_id number,
                               node3_id number,
                               constraint node2_id_pk primary key(node2_id)
                               enable,
                               constraint n2_r1_id_fk foreign key(root1_id)
                               references philips.root1(root1_id) enable,
                               constraint n2_n3_id_fk foreign key(node3_id)
                               references philips.node3(node3_id) enable);
    grant all on philips.node2 to philips;
    create or replace trigger philips.tgr_node2
       before delete or insert or update on philips.node2
       begin
         null;
       end;                          
    create table philips.node3(node3_id number,
                               root2_id number,
                               constraint node3_id_pk primary key(node3_id)
                               enable,
                               constraint n3_r2_id_fk foreign key(root2_id)
                               references philips.root2(root2_id) enable);
    grant all on philips.node3 to philips;
    create or replace trigger philips.tgr_node3
       before delete or insert or update on philips.node3
       begin
         null;
       end;                          
    create table philips.node4(node4_id number,
                               node2_id number,
                               constraint node4_id_pk primary key(node4_id)
                               enable,
                               constraint n4_n2_id_fk foreign key(node2_id)
                               references philips.node2(node2_id) enable);
    grant all on philips.node4 to philips;
    create or replace trigger philips.tgr_node4
       before delete or insert or update on philips.node4
       begin
         null;
       end;                          
    -- out of the relational model
    create table philips.node5(node5_id number,
                               constraint node5_id_pk primary key(node5_id)
                               enable);
    grant all on philips.node5 to philips;
    create or replace trigger philips.tgr_node5
       before delete or insert or update on philips.node5
       begin
         null;
       end;
    -- 3
    create table philips.dictionary(table_name varchar2(30));
    insert into philips.dictionary values ('ROOT1');
    insert into philips.dictionary values ('ROOT2');
    insert into philips.dictionary values ('NODE1');
    insert into philips.dictionary values ('NODE2');
    insert into philips.dictionary values ('NODE3');
    insert into philips.dictionary values ('NODE4');
    insert into philips.dictionary values ('NODE5');
    --4
    create or replace package body philips.pck_restore_philips as
      procedure sp_select_tables is
        aExportTablesPhilips     utl_file.file_type := null; -- file to write DDL of tables   
        aExportReferencesPhilips utl_file.file_type := null; -- file to write DDL of references
        aExportIndexesPhilips    utl_file.file_type := null; -- file to write DDL of indexes
        aExportGrantsPhilips     utl_file.file_type := null; -- file to write DDL of grants
        aExportTriggersPhilips   utl_file.file_type := null; -- file to write DDL of triggers
        sDirectory               varchar2(100) := '/app/oracle/admin/tace/utlfile'; -- directory \\bmduhom01or02 
        cTables                  udt_tables; -- collection to store table names for the relational depth
      begin
        -- omits all referential constraints:
        dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'REF_CONSTRAINTS', false);
        -- omits segment attributes (physical attributes, storage attributes, tablespace, logging):
        dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'SEGMENT_ATTRIBUTES', false);
        -- append a SQL terminator (; or /) to each DDL statement:
        dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'SQLTERMINATOR', true);
        -- create/open files for export DDL:
        aExportTablesPhilips := utl_file.fopen(sDirectory, 'DDLTablesPhilips.pdc', 'w', 32767);
        aExportReferencesPhilips := utl_file.fopen(sDirectory, 'DDLReferencesPhilips.pdc', 'w', 32767);
        aExportIndexesPhilips := utl_file.fopen(sDirectory, 'DDLIndexesPhilips.pdc', 'w', 32767);
        aExportGrantsPhilips := utl_file.fopen(sDirectory, 'DDLGrantsPhilips.pdc', 'w', 32767);
        aExportTriggersPhilips := utl_file.fopen(sDirectory, 'DDLTriggersPhilips.pdc', 'w', 32767);
        select d.table_name bulk collect
          into cTables -- collection with the names of tables in the schema philips
          from all_tables t, philips.dictionary d
         where owner = 'PHILIPS'
           and t.table_name = d.table_name;
        -- execution
        sp_seeks_ddl(aExportTablesPhilips,
                     aExportReferencesPhilips,
                     aExportIndexesPhilips,
                     aExportGrantsPhilips,
                     aExportTriggersPhilips,
                     cTables);
        -- closes all files
        utl_file.fclose_all;
      end sp_select_tables;
      procedure sp_seeks_ddl(aExportTablesPhilips     in utl_file.file_type,
                             aExportReferencesPhilips in utl_file.file_type,
                             aExportIndexesPhilips    in utl_file.file_type,
                             aExportGrantsPhilips     in utl_file.file_type,
                             aExportTriggersPhilips   in utl_file.file_type,
                             cTables                  in out nocopy udt_tables) is
        cDDL       clob := null; -- colletion to save DDL
        plIndex    pls_integer := null;
        sTableName varchar(30) := null;
      begin
        for i in cTables.first .. cTables.count loop
          plIndex    := i;
          sTableName := cTables(plIndex);
           * Retrieves the DDL and the dependent DDL into cDDL clob       *      
          * for the selected table in the collection, and writes to file.*
          begin
            cDDL := dbms_metadata.get_ddl('TABLE', sTableName, 'PHILIPS');
            sp_writes_ddl(aExportTablesPHILIPS, cDDL);
          exception
            when dbms_metadata.object_not_found then
              null;
          end;
          begin
            cDDL := dbms_metadata.get_dependent_ddl('REF_CONSTRAINT', sTableName, 'PHILIPS');
            sp_writes_ddl(aExportReferencesPhilips, cDDL);
          exception
            when dbms_metadata.object_not_found2 then
              null;
          end;
          begin
            cDDL := dbms_metadata.get_dependent_ddl('INDEX', sTableName, 'PHILIPS');
            sp_writes_ddl(aExportIndexesPhilips, cDDL);
          exception
            when dbms_metadata.object_not_found2 then
              null;
          end;
          begin
            cDDL := dbms_metadata.get_dependent_ddl('OBJECT_GRANT', sTableName, 'PHILIPS');
            sp_writes_ddl(aExportGrantsPhilips, cDDL);
          exception
            when dbms_metadata.object_not_found2 then
              null;
          end;
          begin
            cDDL := dbms_metadata.get_dependent_ddl('TRIGGER', sTableName, 'PHILIPS');
            sp_writes_ddl(aExportTriggersPhilips, cDDL);
          exception
            when dbms_metadata.object_not_found2 then
              null;
          end;
        end loop;
      end sp_seeks_ddl;
      procedure sp_writes_ddl(aExport in utl_file.file_type,
                              cDDL    in out nocopy clob) is
        pLengthDDL  pls_integer := length(cDDL);
        plQuotient  pls_integer := null;
        plRemainder pls_integer := null;
      begin
          * Register variables to control the amount of lines needed   *
         * for each DDL and the remaining characters to the last row. *
        select trunc(pLengthDDL / 32766), mod(pLengthDDL, 32766)
          into plQuotient, plRemainder
          from dual;
          * Join DDL in the export file.                            *
         * ps. 32766 characters + 1 character for each line break. *
        -- if the size of the DDL is greater than or equal to limit the line ...
        if plQuotient >= 1 then
          -- loops for substring (lines of 32766 characters + 1 break character):
          for i in 1 .. plQuotient loop
            utl_file.put_line(aExport, substr(cDDL, 1, 32766));
            -- removes the last line, of clob, recorded in the buffer:
            cDDL := substr(cDDL, 32767, length(cDDL) - 32766);
          end loop;
        end if;
          * If any remains or the number of characters is less than the threshold (quotient = 0), *
         * no need to substring.                                                                 *
        if plRemainder > 0 then
          utl_file.put_line(aExport, cDDL);
        end if;
        -- record DDL buffered in the export file:
        utl_file.fflush(aExport);
      end sp_writes_ddl;
    begin
      -- executes main procedure:
      sp_select_tables;
    end pck_restore_philips;<font color="red">The problem is that I still have ...
    When creating the primary key index is created and this is repeated in the file indexes.
    How to avoid?</font>

  • Program to read only specific words in each Line in a text file

    Hi
    I have a question
    I need to write a program where the program must read only specific words in each line
    I will give you an example...
    PSAPPSRV.21201      1-42 13.35.54 238.360 Cur#1.HDEV RC=0 Dur=0.000 COM Stmt=SELECT VERSION FROM PSVERSION WHERE OBJECTTYPENAME = 'SYS'
    PSAPPSRV.21201      1-43 13.35.54 0.040 Cur#2.HDEV RC=0 Dur=0.000 COM Stmt=SELECT STYLESHEETNAME FROM PSOPTIONS
    These are two lines in my text file...now I need to read only the SQL statements present that is both SELECT statements.. Can you please suggest a method.......

    My first reaction to the question is why would you want such thing, but may be I am unknown :)
    Assuming you have the text as string, I mean
    String str = "PSAPPSRV.21201 1-42 13.35.54 238.360 Cur#1.HDEV RC=0 Dur=0.000 COM Stmt=SELECT VERSION FROM PSVERSION WHERE OBJECTTYPENAME = \'SYS\'";you can obtain the sql statement using substring method like
    String result = str.substring(str.indexOf("SELECT")); Again I assume there is no word SELECT preceding and the word SELECT is all caps.

  • How to highlight specific words in the Reader

    Hi!
    I am new to the Acrobat SDK and could need some guidance on how to solve the following problem:
    I need a plug-in that is able to highlight specific words in a pdf file (e.g. by underlining it or changing the background color) and offers a context menu with futher actions when the user clicks on a highlighted word. The first step would be searching the text to find the word that should be marked. I think that should not be that hard but how can I highlight specific words? I first thought of annotations but I need it in the Reader and I should not change the pdf file itself (just the view of it).
    The idea is similar to the skype plug-in for Firefox or IE. The skype plug-in highlights phone numbers. We need to highlight specific words.
    Thanks for every hint on how to achieve this!
    Fabian

    >The documentation says that AVPageViewHilightText is supposed to use >the current color set with AVPageViewSetColor - so it should work. >What version of Acrobat are you working with?
    Yes that how understood the documentation too. I tried the following:
    //Define red
    red.space = PDDeviceRGB;
    red.value[0] = ASInt32ToFixed(1);
    red.value[1] = 0;
    red.value[2] = 0;
    // highlight
    AVPageViewSetColor(pageView, &red);
    PDTextSelect pdTextSelect = PDDocCreateTextSelect(pdDoc, pageNum, &bbox);
    AVPageViewHighlightText(pageView, pdTextSelect);
    I am using Acrobat 7.0.9.
    >Drawing an image would be done with AVPageViewDrawCosObj
    >- which means you'll need to bring the image in as a PDF
    > object and then render it.
    Oh I should have seen that. Thanks for the hint!!
    >Interesting, there should be a way to get transparency,
    > but I am not seeing it at the moment.
    As far as I understood it, it is possible to set the color to transparent but thats not what I am looking for. I would like to have a way of changing the alpha channel of the color.
    Thanks!
    Fabian

  • How to find specific text WITHIN iTunes lyrics?

    I've been trying to figure out how to search within existing iTunes song lyrics for specific words or phrases, for the purpose of making specific playlists of all songs that contain the specified text.
    As an example, I'd like to find all the songs (out of a couple thousand or so) that contain the word "Instrumental" and place them in a list.  Perhaps from there, I'd change all of those songs' Comments to show "[Instrumental]" or some such to make it easier to use some of iTunes built-in tools, or your own excellent ones.
    Or maybe I could look for songs that have the word "Notice" in them, so I can examine their lyrics to spot those which only had partial lyrics auto-loaded to them, so I could do a more thorough manual search.
    Thanks,
      Ed

    I think I'm on the good way with this:
        app.findTextPreferences = NothingEnum.nothing;
        app.changeTextPreferences = NothingEnum.nothing;
        app.findTextPreferences.findWhat = "CAR67765756";
        app.changeTextPreferences.changeTo = "bhbdbds"
        found = app.activeDocument.findText (true);
        if(found.length>0)
            for (j = 0; j < found.length; j++)
                found[j].select();
                alert("true");
                app.documents.item(0).changeText();   
        else
            alert("false");
        app.findGrepPreferences = app.changeGrepPreferences = null;
        app.changeGrepPreferences = app.changeGrepPreferences = null;

  • How to find the description of each parameter

    how to find the use (specific) of a function module (specific purpose)
    and
    how to find the description ( specific purpose ) of each parameter present for a function module apart from the information tht we get from the export and import parameters description

    Hello,
    usually function modules released for customer use have specific documentation. The ones waht do not have this, are buit only for SAP Internal use.
    Usually you will not find documentation for these.
    Best regards,
    Dezso

  • Find specific word in MS Word, copy containing paragraph, paste to Excel

    Hi, I'm a complete newbie to programming and scripting, and I searched a bunch of forums for this question and found something similar, but never the full answer neither for automator nor Applescript.
    Please help me do this kind of operation.
    1.Search a 200-page MS Word document for a specific word.
    2.Select the whole paragraph containing the word and copy it to clipboard.
    3.Paste this paragraph to Excel document(the next cell in the column)
    Basically, I need to analyze the mood of the paragraph with mentioned word in a massive of irrelevant info. And I want to get a nice column in Excel so I could filter all the useless information.
    Please help me create this script and/or give me some links where I can read something similar.
    Thanks in advance.

    Hello, I'm also a total newbie to scripting (started about a week ago).
    I tried to work out how to do what you asked using my very limited knowledge and managed to create a script that it very long and clumsy and only works half the time. I'm not certain it does exactly what you want either..
    set x to text returned of (display dialog "What word would you like to search for?" default answer "")
    tell application "Microsoft Word"
    activate
    tell application "System Events"
    set CR to ASCII character of 13
    keystroke "f" using command down
    keystroke x & CR
    delay 1
    keystroke "w" using command down
    delay 1
    key code 126 using {command down, shift down}
    delay 1
    keystroke "c" using command down
    delay 1
    end tell
    tell application "TextEdit"
    activate
    tell application "System Events"
    keystroke "n" using command down
    keystroke "v" using command down
    tell application "Microsoft Word"
    activate
    tell application "System Events"
    key code 125 using {command down, shift down}
    delay 1
    keystroke "c" using command down
    end tell
    tell application "TextEdit"
    activate
    tell application "System Events"
    keystroke "v" using command down
    keystroke "a" using command down
    keystroke "c" using command down
    tell application "Microsoft Excel"
    activate
    delay 3
    tell application "System Events"
    set CR to ASCII character of 13
    keystroke "v" using command down
    CR
    end tell
    end tell
    end tell
    end tell
    end tell
    end tell
    end tell
    end tell
    Haha I doubt that helps but I felt like trying anyway...
    Other stuff:
    When the dialog box comes up at the beginning, for some reason it wont run the script properly if you press enter so you have to actually click continue.
    Also I made it copy to TextEdit instead of clipboard as I cant seem to find that on my computer.
    I hope someone with more knowledge than me comes along soon!

  • How to find a word and copy the phrase containing the word without using the mouse

    I am using a macro to fill in a form and select fields in the form. The fields are titled and i want to use the field title to select the field and thus need to copy the name to compare with the search text and tab to the next requested field.

    Ctrl+f opens the search in page feature. However, the result is not automatically selected and ready for copying. And since you already typed the query, you wouldn't really save any time that way...
    Firefox has some accessibility features you could explore: [[Accessibility features in Firefox - Make Firefox and web content work for all users]]. These include placing a movable cursor into the page, or searching/selecting using / and other possibly useful items. Maybe between them you can find a good workflow. If not, maybe an add-on?
    ''Edit: Here's an example of how to select the word accessibility in this post:''
    Type:
    /acce
    Press:
    Esc, Ctrl+Shift+right
    ''Edit: Actually it works with Ctrl+f as well, and that might be better if the word is common so you can use Next/Previous.''
    Press:
    Ctrl+f
    Type:
    acce
    Press:
    Esc, Ctrl+Shift+right

  • How to find a word written with two fonts...?

    Hi,
    I have a 200+ pages document that contains some words with the first letter in Times regular and the rest in Times italic. Is there any way to find those words in the document?
    Thanks

    Ooooo, Dave ....
    Annabelle, a non scripting solution is the following.
    You cannot search for words with multiple fonts. However, since you can search for words in one font, you can exclude 'good' ones.
    I will be assuming you have a regular document, with just black text ...
    In Search & Replace, GREP, search for "\b\w+\b" with a font style of "Regular" and replace with formatting: text color red. Be sure not to accidentally put anything in the replace text field -- it should be entirely empty. Now all entirely Regular words are red.
    Repeat with the font style "Italic". Now all words that are entirely Regular or Italic are in red.
    Search for "\b\w+\b" with a text color of Black. This will find all words that are neither entirely in Italic nor entirely in Regular.
    In case you never used it before, the GREP expression means "a word boundary -- one or more word characters -- a word boundary". Essentially, it does a 'Find entire word' for any length of words.
    Note that if you have words in, say, bold, bold italic, or 46 Light Italic, you will have to mark these as well with the check colour, or else you'll also find them 'bad'.
    You might want to create a new swatch for marking, so you can delete it afterwards, replacing with Black again.
    ... Are you familiar with how to use scripts? It might be a bit easier if I wrote a tiny script, although my method will find all rogue formatted text.

  • How to find a word with different font format (e.g. italic and regular in one word)

    Hi people,
    I need to find a word, prefferably using GREP or simple Find/Replace tool.
    Sometimes, when I get source text to paste into InDesign, some word's format is messed up. First letter is italic and rest is regular or otherwise (or any other font format). How can I find such words automatically. For example:
    Example
    would really appreciate any help.
    best regards
    JMG.

    Hi,
    If I had to do that, using Multi-Find/Change, I would play it like:
    With MFC, I create a set of the 2 regex. So, one click to fix your problem.

  • How to find certain words based on table

    Hello,
    I have a list of words available in one particular table, based on those records i need to match it up with one specific column on another table. Based on that match i need to update the same. Please see the example for your reference in the excel file.
    Please do let me know if you need further clarifications.
    https://www.dropbox.com/s/fy5oj5r4feipqrw/Certain%20word%20sample.xlsx?dl=0
    Vinwin
    VinWin06

    One more question just out of curiosity is it possible to find out any object name or thing based on the text from table 1. Like there is no table 2 available to contain words to find the relevant records, so we have to find the words from the table 1 and
    those words mainly are any objects or a thing like bolts,shaft,spanner etc.
    Is it possible to do, always welcome to your suggestions.
    VinWin06

  • How the find the name of each div element for Android firefox

    Hi guys, I have been trying to customize the ui of my Android firefox. I think the first step is to find the name of each element so that I can add my own css via stylish. For example, I wanna move the tab count beside the address bar to the right bottom for easy one hand use. Can anyone advise me where I can find the name of each div element?
    Thanks a lot.

    Firefox for Android UI is written in Java not XUL so stylish will not change the UI colors. We provide limited support for light weight themes. Depending on what you are attempting to accomplish it may be doable that way. https://addons.mozilla.org/en-US/developers/docs/themes

  • How do you auto capitalize in the new version of pages? It no longer capitalizes the first word in each sentence and "I".

    I just updated to the new version, and this problem occurred right away. Please help!! 

    Congratulations on discovering the first of over 90 + features removed from Pages by Apple:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&mforum=iworktipsn trick
    Your previous version of Pages should still be in your Applications/iWork folder. It actually works.
    Peter

Maybe you are looking for

  • Error creating a new module in OWB

    Hi All, I am getting an error while creating a new module using OWB. We are using 11.2. Any Inputs are greatly appreciated. Has any body experienced this problem. The error is as follows.. Internal error: Load Error. PLease contact Oracle support wit

  • Boot xp from an External HD

    I just bought leopard and want to install XP. As the general rule I use OS X but for times when I want to play games, I use windows. I don't need it all the time so using an external HD to install windows seems to be the way to go. However, I know th

  • How to install Camera Raw 7.1?

    I have download Camtera Raw 7.1 for Sony Nex7 and Elements 10. I also download the Applicaion Manager. How to install the Camera Raw 7.1?

  • Multiple record insert problem in Oracle Procedure that uses a cursor

    Dear X-pert guies, I have a oracle procedure that use a cursor, I repeatedly make query on 1st table using cursor value and insert that queried value(of 1st table) to 2nd table y_summary. y_summary has composite  primary key :PK_Y_SUM (BILL_DATE, TRU

  • Bug in WLS 6.1 DataSource + Oracle Pool

    Does any one has arrived to execute an Oracle Stored procedure which return a CURSOR in response with JDBC through the DataSource? It's working perfectly with WLS 5.1sp9 to 6.0sp2 and NOT with the 6.1 (even sp1) ... Exception : weblogic.jdbc.rmi.inte