Separating a sentence into words

hi there..what is the best or most efficient algorithm for separating a string into words? the string contains a sentences and phrases, and i would like to have them separated into words..how can i do this manually? without using a native java method?

You question can be best answered by using the Java native method
import java.util.StringTokenizer;
StringTokenizer word =
        new StringTokenizer("You have the answer, Spider.", "  \n.,");
while (word.hasMoreTokens())
System.out.println(word.nextToken());
Output:
You
have
the
answer
Spider
The string tokenizer is provided a sentence and a set of separators. In this case the blank, new-line, comma and period. So, the basic idea is:
Start from the beginning of the sentence provided.
Scan each character and check if it is the one specified as separators.
If it is, print all the character/s before the separator.
Start again from the position right after the sepator and follow the same technique to iterate through the whole sentence.
I hope that will help you to implement your own algorithm.
Good luck!

Similar Messages

  • How to write ABAP code to split a sentence into Word by Word and store them

    Hi all,
        I have to split a sentence into word by word and store them into separate columns. This sentence is nothing but a text description (TXTMD) from table TXXXX. The description will have 3 or more than 3 words and LAST word will be <b>always with %</b>'. The following is the sample input data:
    KEY(ORD43)       Description(TXTMD)
    'AAAA'                '1234  ABCD COMPANY USA  80%'
    'BBBB'                '4745  XYZ INC CANADA ABCD  70%'
    For the first record:
      '1234' should stored in to <b>Field 1</b>, 'ABCD COMPANY USA' into <b>Field 2</b> and
    '80%' into <b>Filed 3</b>.
    For the second record:
      '4745' should stored in to <b>Field 1</b>, 'XYZ INC CANADA ABCD'  into <b>Field 2</b> and 70%' into <b>Field 3</b>.
      The first word into Field 1, the last word with % into Field 3 and all middle words into Field 2. The number of words in the sentence could be 3 or more than 3.
      Could you please help in writing the ABAP for this requirement ????
      Thanks in advance.
    Regards,
    Venkat.

    Easy way if you know the length of the field.
    In my example I assumed my field has 12 places.
    DATA: obs TYPE string,
           bkp TYPE char12.
    obs = '12345678901234567890123456789012345678901234567890'.
    DO.
       MOVE obs TO bkp.
       SHIFT obs BY 12 PLACES LEFT.
       write: / bkp.   "Do what you want with bkp variable
       IF obs IS INITIAL.
         EXIT.
       ENDIF.
    ENDDO.

  • How to write ABAP code to split a sentence into Word by Word ???

    Hi all,
    I have to split a sentence into word by word and store them into separate columns. This sentence is nothing but a text description (TXTMD) from table TXXXX. The description will have 3 or more than 3 words and LAST word will be always with %'.
    This description is available on R/3 table and in InfoObject on BW side and this split is required in reporting. Should I split it in R/3 itself or BW side, PLEASE ?
    The following is the sample input data:
    KEY(ORD43) Description(TXTMD)
    'AAAA' '1234 ABCD COMPANY USA 80%'
    'BBBB' '4745 XYZ INC CANADA ABCD 70%'
    For the first record:
    '1234' should stored in to Field 1, 'ABCD COMPANY USA' into Field 2 and
    '80%' into Filed 3.
    For the second record:
    '4745' should stored in to Field 1, 'XYZ INC CANADA ABCD' into Field 2 and 70%' into Field 3.
      The first word into Field 1, the last word with % into Field 3 and all middle words into Field 2.
    Could you please help in writing the ABAP for this requirement ????
    Thanks in advance.
    Regards,
    Venkat.

    Hi,
    in case your text is built in that way for every record you can do the following in routines of the update rules to the 3 fields:
    routine for field 1:
    result = comm_structure-<name of your textfield>(4).
    routine for field 2:
    data: l_length type i.
    l_length = strlen( comm_structure-<name of your textfield> ).
    l_length = l_length - 9.  "the 5 characters at the beginning + 4 at the end.
    result = comm_structure-<name of your textfield>+4(l_length).
    routine for field 3:
    data: l_length type i.
    l_length = strlen( comm_structure-<name of your textfield> ).
    l_length = l_length - 3.
    result = comm_structure-<name of your textfield>+l_length(3).
    hope this helps!
    kind regards
    Siggi

  • Splitting string separated by commas into words and assigning numerical values

    Project details :
    I have a project where a description field is being looked at and based on the values (multiple words) I have to do a vlookup from another spreadsheet to get the dates from the appropriate date fields.
    I have created a user defined function to extract keywords from a list from a table. It extracts words from the string separated by comma delimiter.
        I am thinking of assigning values something like this: cooler = 1, compressor = 2, frame = 2, change of order = b etc.
        So if there is a “cooler, compressor, frame, change of order” in the cell, then it should read as: b12 (unique values). Based on the values, I can do a vlookup on the dates. I tried sumproduct in conjuction with search function but did not
    work. Tried split function but did not quite work.
    Any help regarding this is greatly appreciated. Thank you, regards
    keywords
    engine, compressor, frame, cooler     =Keywords(Wordlist,A2) is the function I am calling
    frame, cooler
    engine, cooler, change order
    cooler

    Hi,
    You're asking this question in the wrong forum, this is a PowerShell forum.
    The Excel VBA forum is this way:
    http://social.msdn.microsoft.com/Forums/en-us/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    Side note to whoever voted up the OP - why??
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • Insert sentences into JEditorPane

    Hi,
    I am trying to insert a user input sentence into JEditorPane. Before that, the user will type a word which is search for in the JEditorPane. when the word is found in a sentence, the user's input sentence is inserted to be the line juz after the line with the keyword.
    from http://forum.java.sun.com/thread.jspathreadID=650821&messageID=3827757
    i learnt how to find the line which contains the keyword, but how do i push the subsequent lines downwards, and insert the user's sentence in between them??
    Regards,
    yiming

    I am on a roll this morning.
    I am still pulling my hair out with the kit but here is what I did.
    First get the editor kit. If you traverse the code there are a lot of actions that are built it.
    I grabbed these actions in the following manner.
    HTMLEditorKit kit = new HTMLEditorKit();
    Map _editActionMap;
    Action[] action = kit.getActions();
    for ( int iIndex = 0; iIndex < action.length; iIndex ++ ) {
    // if you want to see the action name.
    System.out.println( action.toString());
    // Build a convient hash of the actions by name.
    _editActionMap.put( action[iIndex].getValue( Action.NAME ), action[iIndex] );
    Now you have a map of all the built in actions. Guess what insert table is in the list. Do see the rest just iterator through the list and print them out.
    Now you have the actions.
    Add the action for insert table to a pop up menu.
    tableMenu is a JPopmenu menu.
    JMenuItem menu;
    menu = tableMenu.add( (Action)_editActionMap.get( "InsertTable" ));
    menu.setText( "Insert Table" );
    The default label is the actions name. So I simply rename the pop menu title.
    Cut, copy, paste, bold, italic are also in there.
    Regards
    Carl

  • Covert INR into words

    hi all,
         I want convert the INR into words.
    ex: 1,23,456.00 - one lac twenty three thousands four hundred fifty six only.
    but using SPELL_AMOUNT FM.
        it converting one hundred twenty-three thousand four hundred fifty-six.
    can anyone suggest me.
    thanx.
    srinivas.

    FUNCTION Z_FI_AMT_WRDS_CONVERT .
    ""Local interface:
    *"  IMPORTING
    *"     REFERENCE(AMT)
    *"  EXPORTING
    *"     REFERENCE(WORD) TYPE  SPELL-WORD
    amt_c1 = amt.
      replace '.' with 'D' into amt_c1.
      SEARCH amt_c1 for 'D'.
      IF sy-subrc = 0.
        amt_wh1   = amt_c1+0(sy-fdpos).
        wrk_fdpos = sy-fdpos + 1.
        amt_dc1   = amt_c1+wrk_fdpos(2).
      ELSE.
        amt_wh1 = amt_c1.
        amt_dc1 = '00'.
      ENDIF.
      amtnmr = amt_wh1.
      amtdec = amt_dc1.
      CONCATENATE amtnmr amtdec INTO amount.
      CALL FUNCTION 'SPELL_AMOUNT'
           EXPORTING
                amount   = amount
                currency = 'INR'
                filler   = ' '
                language = 'E'
           IMPORTING
                in_words = amountrs.
    *WRITE: / 'amount in figures:   ' ,'Rs.-->', AMTNMR,'.',AMTDEC.
    *WRITE: / 'Amount in WORDS.:     ' ,' Rs.' ,AMOUNTRS-WORD,
    *'AND' ,AMOUNTRS-DECWORD ,'Paisa Only'.
    *SKIP.
    CLEAR: unit1,digit1,unit2,digit2,unit3,digit3,unit4,digit4,word1,word2,
              word3,word4,word.
      digit1 = amtnmr+14.
      unit1 = amtnmr+13.
      digit2 = amtnmr+12.
      unit2 = '0'.
      digit3 = amtnmr+11.
      unit3 = amtnmr+10.
      digit4 = amtnmr+9.
      unit4 = amtnmr+8.
      digit5 = amtnmr+7.
      unit5 = amtnmr+6.
      digit6 = amtnmr+5.
      unit6 = '0'.
      digit7 = amtnmr+4.
      unit7 = amtnmr+3.
      digit8 = amtnmr+2.
      unit8 = amtnmr+1.
      digit9 = amtnmr.
      unit9 = '0'.
    *WRITE:/ 'UNIT9 = ' , UNIT9, 'DIGIT9 = ', DIGIT9.
      IF ( unit1 NE '0' ) OR ( digit1 NE '0' ).
        SELECT SINGLE wort INTO word1 FROM t015z WHERE einh = unit1
                    AND ziff = digit1 AND spras = 'E'.
       word1 =    t015z-wort.
        REPLACE ';' WITH  '' INTO word1.
    *write: / word1.
      ENDIF.
      IF unit2 NE '0' OR digit2 NE '0'.
        SELECT SINGLE  * FROM t015z WHERE einh = unit2
                    AND ziff = digit2 AND spras = 'E'.
        word2 =    t015z-wort.
        REPLACE ';' WITH  '' INTO word2.
        CONCATENATE word2 ' HUNDRED ' INTO word2.
    *REPLACE '(FEMININE)' WITH  '' INTO WORD2.
    *write: / word2.
      ENDIF.
      IF unit3 NE '0' OR  digit3 NE '0'.
        SELECT SINGLE  * FROM t015z WHERE einh = unit3
                    AND ziff = digit3 AND spras = 'E'.
        word3 =  t015z-wort .
        CONCATENATE word3 ' THOUSAND ' INTO word3.
        REPLACE ';' WITH  '' INTO word3.
    *write: / word3.
      ENDIF.
      IF unit4 NE '0' OR  digit4 NE '0'.
        SELECT SINGLE  * FROM t015z WHERE einh = unit4
                    AND ziff = digit4 AND spras = 'E'.
        word4 =    t015z-wort.
        REPLACE ';' WITH  '' INTO word4.
        CONCATENATE word4 ' LAKH ' INTO word4.
    *WRITE: / WORD4.
      ENDIF.
      IF unit5 NE '0' OR  digit5 NE '0'.
        SELECT SINGLE  * FROM t015z WHERE einh = unit5
                    AND ziff = digit5 AND spras = 'E'.
        word5 =    t015z-wort.
        REPLACE ';' WITH  '' INTO word5.
    *write: / word5.
      ENDIF.
      IF unit6 NE '0' OR  digit6 NE '0'.
    *UNIT6 = 'H'.
        SELECT SINGLE  * FROM t015z WHERE einh = unit6
                    AND ziff = digit6 AND spras = 'E'.
        word6 = t015z-wort.
        REPLACE ';' WITH  ' ' INTO word6.
        CONCATENATE word6 ' HUNDRED ' INTO word6.
    *REPLACE '(FEMININE)' WITH '' INTO WORD6.
    *write: / word6.
      ENDIF.
      IF unit7 NE '0' OR digit7 NE '0'.
        SELECT SINGLE  * FROM t015z WHERE einh = unit7
                    AND ziff = digit7 AND spras = 'E'.
        word7 = t015z-wort.
        REPLACE ';' WITH  ' ' INTO word7.
        CONCATENATE word7 ' THOUSAND ' INTO word7.
    *write: / word7.
      ENDIF.
      IF unit8 NE '0' OR digit8 NE '0'.
        SELECT SINGLE  * FROM t015z WHERE einh = unit8
                    AND ziff = digit8 AND spras = 'E'.
        word8 = t015z-wort.
        REPLACE ';' WITH  '' INTO word8.
        CONCATENATE word8 ' LAKHS ' INTO word8.
    *write: / word8.
      ENDIF.
      IF digit9 NE '0'.
        unit9 = '0'.
        SELECT SINGLE  * FROM t015z WHERE einh = unit9
                    AND ziff = digit9 AND spras = 'E'.
        word9 = t015z-wort.
        REPLACE ';' WITH  ' ' INTO word9.
    *REPLACE '(FEMININE)' WITH ' ' INTO WORD9.
        CONCATENATE word9 ' HUNDRED ' INTO word9.
      ENDIF.
      CONCATENATE word9 word8 word7 word6 word5 ' CRORE ' INTO wordc
      SEPARATED BY space.
    *WRITE:/ 'Amount in Rs.------->'.
      IF amountrs-decword NE 'ZERO'.
        CONCATENATE ' AND PAISE ' amountrs-decword INTO dcwrd
        SEPARATED BY space.
      ENDIF.
      IF amtnmr > 9999999.
    *WRITE: / WORDC.
    *ENDIF.
        CONCATENATE 'RUPEES' wordc word4 word3 word2 word1 dcwrd 'ONLY'
                     INTO word SEPARATED BY space.
      ELSE.
        CONCATENATE 'RUPEES'word4 word3 word2 word1 dcwrd 'ONLY'
                      INTO word SEPARATED BY space.
      ENDIF.
      CLEAR dcwrd.
    *WRITE :/ WORD.
    *WRITE: 'AND' ,AMOUNTRS-DECWORD ,'Paise Only
    ENDFUNCTION.
    Regards,
    Deva.

  • Cannot paste any online pictures from any websites into word/powerpoint/onenote 2013

    I cannot paste any pictures/ images copied from any websites into word, powerpoint and onenote.
    Now, i am so stressful because this strange problem occurs with both versions of Microsoft Office (2010 and 2013). I had updated the Microsoft Office from 2010 to 2013
    with the hope that this problem will be solved in 2013 version but I was so disappointed. I was so addicted to onenote and cannot live without onenote. In the past, I always used onenote to store countless handmade-creating articles and so many other information
    found on websites and other resources by simply copying (Ctrl + C) and pasting (Ctrl + V) them into onenote without any problems.
    This strange problem has occurred and resisted approximate 2 months. Now I am almost going insane. I am longing for help, any help from the online community. Please!
    I will describe the problem in more details.
    -My laptop was Asus N550JV, and it was installed only one operating system: Window 8 single language by manufacturer. Nothing such as virtual machine or multiple operating
    systems in this laptop.
    -This problem occurred with all websites, not only with a certain website or a specific website.
    -It occurred with all of my latest-updated web-browsers, including firefox, internet explorer (which was pre-installed by factory in my window 8), opera, safari, chrome.
    -Despite of using whatever web-browsers listed above, although the whole articles (text and pictures) on these websites were copied, however there was only text pasted
    successfully, excluding pictures.
    -Pictures/ images were not pasted together with text. The onenote/word/powerpoint only shows a blank space where the picture should be in. If I click on this blank space,
    a frame will appear covering this blank space inside, and the url address of this picture was shown. The
    “drawing tools”
    tab appeared instead of “picture tools”
    tab. I guessed the pasted pictures were considered as drawing objects, not as pictures.
    -After many unsuccessful attempts to solve this problem in Microsoft Office, some days ago I decided to install Open Office of Apache in the same laptop in order to make
    a control test between the two programs. I was successfully in copying and pasting text and pictures on many websites (using whatever web-browsers I am having) into text document of Open Office without any problems. Pasting pictures and text from websites
    into Open Office was successful, so that what the hell was happened with my Microsoft Office?
    -If I download or save the pictures found on websites to my laptop then using the
    “insert picture”
    function to insert these pictures into word/ppt/onenote, these pictures were inserted successfully without any problems.
    -Copying and pasting text and pictures from old articles stored in onenote to a newly created word document were successful without any problems. Copying and pasting text
    and pictures between word and word, onenote and onenote were successful without any problems.
    -It was concluded that this problem only occurred with online pictures pasted from websites, while inserting or pasting the downloaded pictures were successful
    without any problems.
    -My internet connection was not disrupted during copying and pasting processes.
    -My Canon laser printer only recognized and printed the text lines, there were only blank spaces in the places where the pictures should be in.
    During two months since having this problem, I have searched so many times in order to find a solution. All of solutions listed behind I already found on internet and tried
    them all but nothing worked! This problem still resisted in Microsoft Office 2013 and now I am so sad and tired because of it.
    List of solutions I found and tried but nothing worked:
    -Right-clicking then choose "paste option: keep source formatting”
    and choose “set as default paste option"
    -On the
    View tab of the Ribbon or on the status bar, choose
    Print Layout view, not Draft view.
    -Go to
    Office Button | Word Options | Advanced: Show document content and make sure that
    “Show drawings and text boxes on screen”
    is checked and that “Show picture placeholders”
    is not checked.
    -Go to
    Office Button | Word Options | Display: Printing options and make sure that
    “Print drawings created in Word”
    is checked.
    -On the
    Home tab of the Ribbon, locate the
    Paragraph group and click the dialog launcher arrow in the bottom right corner to open the
    Paragraph dialog; in that dialog, make sure that line spacing of the paragraph the picture is in is not set to an
    Exact value.
    -Paste the picture and immediately press
    Ctrl+Shift+F9 to unlink it. The picture will then be embedded in your document.
    -If you find that Word hangs when you try to paste, you can instead select
    Edit | Paste Special and choose “Device-independent Bitmap”
    instead of the default of “HTML format.”->
    I could not try this solution because my paste special options only had three choices: unformatted text, html format, unformatted unicode text.
    -Select File, Options, Advanced, then under
    Cut, Copy, Paste section set "insert/paste picture as”:
    tight/ inline with text/ through/ square/ top and bottom/ in front of text/ behind text… -> I have tried all
    choices but nothing worked.
    -Rename the Normal.dot or Normal.dotm global template file: run cmd.exe and type
    ren %userprofile%\AppData\Roaming\Microsoft\Templates\Normal.dotm OldNormal.dotm. Then type
    exit, and then press Enter. Or go to C:\Users\Home\AppData\Roaming\Microsoft\Templates to rename the Normal.dot/ Normal.dotm file manually.
    -Turn off the "Use draft quality" option:
    Click
    File, and then click Options. Click Advanced,
    Under Print, click to clear the Use draft quality check box. Click OK.
    -Change the view to:
    Print Layout/ Full Screen Reading/ Web Layout/ Print Preview
    For Word 2010-2013: Click File, and then click Print.
    -Check the box for
    “Print background colors and images”
    at File | Options | Display: Printing options.
    -Check the box for
    “Show background colors and images in Print Layout view”
    at File | Options | Advanced: Show document content.
    -Using repairing function to repair the Microsoft office 2013.
    Nothing worked! I have no clue of what have been happened with my Microsoft Office! Please help!
     I cannot upload a screenshot taken from my laptop into this forum. It said that
    body text cannot contain images or links until we are able to verify your account.

    To Scxy1234: I also don't know why my paste special options only had 3 choices excluding "device independent bitmap'
    To Steve Fan: I created the new second user account in my window 8. It was set as a standard account, not as administrator account as my first original user account. Specifically, i used the same email address with this forum account's to
    create this second user account. It means that the second user account in my laptop also was a Microsoft account.
    Can you guess what happened after i had logged in to the second user account? I opened some random websites by firefox, copied and pasted all text and pictures on these websites into a word document and onenote successfully without any problems!!!!
    I saved this word document and exported this onenote section to a Usb. After that, i switched from second standard user account to my window administrator account and opened the two files which were saved to Usb previously. They were opened and displayed
    normally as the same as what i previously had seen in the second user account, i.e. pasted text and pictures were displayed normally. However, when i opened the same web address again to copy the same text and pictures to word and onenote, there were only
    text lines pasted successfully, excluding pictures! This old strange problem happened again when using original administrator account for logging in window. In contrast, when using the second standard user account to log in window, copying and pasting text
    and online pictures of Microsoft office worked normally.
    I truly don't figure out the reason(s) caused this strange problem. I think my case is a special case because i tried all solutions other people had tried but nothing worked.
    Please help me!
    p/s: when i logged in the second standard user account, i opened the paste special options in word and there were only 3 choices under paste special options, excluding "device independent bitmap"

  • I just purchased Export PDF, and when I use it, it opens them in WordPad (which I never use) instead of Word. Thus, the pictures are not there, and the fonts are changed. How do I get into Word?

    I just purchased Export PDF, and when I use it, it opens them in WordPad (which I never use) instead of Word. Thus, the pictures are not there, and the fonts are changed. How do I get them imported into Word?

    Hi,
    I checked your account,your Export PDF subscription is in 'Pending' status.
    Once it gets confirmed you will be able to use it.
    Please let us know if you require further assistance.
    Regards,
    Florence

  • Convert numbers into words

    i work on release 11i application and converts some reports to run with xml publisher
    i want to convert a total field that exist in po report to words it seems to convert number into words isthat possible i tried to make this in oracle reports and it run successfully but there is a problem when converting that report to run with xml publisher .
    any help will be approtiated.

    Use ap_amount_utilities_pkg.ap_convert_number
    E.g.
    SQL> select ap_amount_utilities_pkg.ap_convert_number(trunc(12345678)) from dual;
    AP_AMOUNT_UTILITIES_PKG.AP_CONVERT_NUMBER(TRUNC(12345678))
    Twelve million three hundred forty-five thousand six hundred seventy-eight
    Gareth

  • How can I convert my Open Source document files into Word document files? I cannot download Pages since my Macbook Air does not have the most recent software.

    How can I convert my Open Source document files into Word document files? I cannot download Pages since my Macbook Air does not have the most recent software. I downloaded open office to my mac to try and save money. It worked well for a while. Now I get this pop-up message that asks me to "Reopen" and when I select the option, nothing happens. I cannot save my documents anymore and I cannot convert them to word. Help!

    dwb wrote:
    Does OpenOffice output Word documents by default or do you have to select it manually?
    You have 17 options to save as in Open Office, one of which is .doc  files,  yes it needs to be saved manually.
    You may be able to default to DOC, but have not tried same.
    Since Open Office is 99% same as Word, I use it, or Word, either one.  Open Office is a bit less buggy than Word 11'

  • When I go into pdf file it only gives me the option to convert into pdf when it's already a pdf. I want to convert it into word and I've purchase this a few months ago now I need help

    I Need help in converting a pdf into word. I've purchased it a few months ago and now for the first time I tried to use word and I can't it only gives me the option to convert it into a pdf when it is already a pdf! Urgent help please

    Not sure what you mean by "tried to use Word". ExportPDF doesn't change what Word can do. Can you explain what you try and what happens in more detail?

  • How do I convert a pdf-presentation into Powerpoint, which it is said that I can do? I can convert into Word, but that is of no help as I need to change the text in the document.

    How do I convert a pdf-presentation into Powerpoint, which it is said that I can do? I can convert into Word, but that is of no help as I need to change the text in the document.

    Hi Sara!
    Yes this sounds interesting. Can I update to that from the PDF Export I have just renewed? How much would that cost?
    Thanks for your quick answer.
    Best Regards
    Per-Olof Egli                                         Logga Egli C.I.S
    Managing Director
    Egli C.I.S. Consulting
    Lapphundsgränd 43
    SE-128 62 SKÖNDAL
    Sweden/Швеция
    Phone:         +46 708 23 03 53
    <http://www.eglicisconsulting.se/> www.eglicisconsulting.se
    <mailto:[email protected]> [email protected]
    Skype: eglipo
    Från: Sara.Forsberg 
    Skickat: den 10 september 2014 22:11
    Till: P-o Egli
    Ämne:  How do I convert a pdf-presentation into Powerpoint, which it is said that I can do? I can convert into Word, but that is of no help as I need to change the text in the document.
    How do I convert a pdf-presentation into Powerpoint, which it is said that I can do? I can convert into Word, but that is of no help as I need to change the text in the document.
    created by Sara.Forsberg <https://forums.adobe.com/people/Sara.Forsberg>  n Adobe ExportPDF - View the full discussion <https://forums.adobe.com/message/6718870#6718870>

  • I've become increasingly frustrated with the ipad adobe app. I've subscribed to be able to convert my pdf files into word documents and it has yet to work I've paid for a service that does not work which in turn makes me a disgruntled customer to say the

    I've become increasingly frustrated with the ipad adobe app. I've subscribed to be able to convert my pdf files into word documents and it has yet to work I've paid for a service that does not work which in turn makes me a disgruntled customer to say the least very disappointed with such horrible service

    Which service did you subscribe to?  Adobe PDF Pack?
    Once I know the service that you subscribed to, I can move this post to the right forum so that you can get in touch with the folks who can assist you.

  • Photoshop CS6 files into Word 2011?

    When I import a photo file from CS6 for MAC, 1x2" at 300 ppi, into Word 2011 for MAC on my new MacBook Pro, the file is importing to fill the page width. When I import a similar file from my old CS2 on the same new computer, the file imports at the correct 1x2" size. I think there is some setting I need to change in CS6, but have been through every place I can find to look. What can I do to fix this?

    Don't have retina display. Just realized images are importing to Word 2011 sized at 72 ppi rather than the 300 of original file. That is why size is coming out so large. There must be somewhere in CS6 that is doing this. Apparently, in CS5.5, there is a place to change this under Photoshop>options>, but this choice does not show up in CS6, and I can't find anything similar under Preferences. Any ideas?

  • Converting the amount into words in different languages

    Hi All,
    Is there any FM to convert the amount into words in a specific language.
    SPELL_AMOUNT FM is not working for some of the languages like portuguese, etc..
    Any idea on this.
    Thanks in Advance.

    Hi,
    Use the FM:
    CALL FUNCTION <b>'Y_AMOUNT_IN_WORDS'</b>
    Hope it helps.
    Reward if helpful.
    Regards,
    Sipra

Maybe you are looking for

  • Pdf files not printing whole page

    pdf files printing just part of page. have everything updated on my mac and hp printer. anyone have a solution?

  • Multi-Value return on the selection screen.

    hi everyone, I have two parameters on selection screen, Material Number and Material Description. I have provided custom F4 help for Material Number and the Material Description Field is input disabled. On selecting one of the values for Matnr from F

  • Access to Cloud from notification area

    Yesterday I set up BT Cloud all seemed OK, but today the icon that it placed in my notification area for quick access does not respond, yesterday when I right clicked the icon it gave me the option to Open Cloud or Open Sync Folder, today no response

  • Will this laptop be sufficient to run 3D in Photoshop CC?

    3D not suported on my old laptop with Photoshop CC installed. Want to make sure before I purchase a new one. Here are the specs: Platform: PC Primary Color: Silver Processor Brand: AMD Processor Type: AMD Quad-Core A10-5750M Accelerated Processor Pro

  • Transfering music folder location

    Recently, I ran out of disk space on my computer. So, I purchased a 320 GB LaCie disk. This question isn't just regarding iTunes, it goes for all of my applications. I changed the location of the files (at least for iTunes right now), to my LaCie dis