Replacing the text

Hello All,
I need your help regarding replacing the text with some other text. I am trying to replace the text '\\' with '\'. But i am not able to get the correct result.
I am having string value like   '\\Computername\Path\comp_name\\domain\\location' i want to replace the text '\\' with '\' only for 2nd and 3rd occurance.
Replace \\domain\\ with \domain\ I have tried with below query...
SELECT REGEXP_REPLACE('\\Computername\Path\comp_name\\domain\\location' ,
       '(\\){2,}', '\')
       AS Expression
  FROM dual;i am getting the below result for above query.
  \Computername\Path\comp_name\domain\location But i want the output like below..
\\Computername\Path\comp_name\domain\location I am using Oracke 11g vesion.
Please help me on this .
Thanks a lot for your help.

Hi,
sunitha2010 wrote:
... small doubt--Is there any difference between these two queries?Let's call this Query 1:
SELECT  REGEXP_REPLACE ( str
                 , '\\\\'    -- 2 backslashes, escaped.  See note below
                 , 1 + INSTR ( str
                 )     AS expression
FROM    table_x
;and Let's call the query below Query 2:
select
REGEXP_REPLACE
('\\Computername\Path\comp_name\\domain\\location', '\\\\', '\\',2 )
as Expression
from
dual
;Yes, there is a difference.
Query 1 leaves the first occurrence of '\\' intact, regardless of where that is in the string.
Query 2 ignores the 1st character, but otherwise changes all occurrences of '\\' into a single '\'.
You'll see the difference if you add anything to the very beginning of the test string, for example
'X\\Computername\Path\comp_name\\domain\\location'I mentioned this in my first message:
Frank Kulash wrote:
... I assume the 1st occurrence won't always be at the beginning of the string...If the first occrence always is at the beginning of the string, then you don't need regualr expressions at all. You can say:
SELECT  SUBSTR (str, 1, 1)
     || REPLACE ( SUBSTR (str, 2)
          )     AS expression
FROM    table_x;This will be more efficient than regular expressions.

Similar Messages

  • Replace the text numbers string in a txt file using C++.. Help Me..

    Read a Document and replace the text numbers in a txt file using c++..
    For ex: 
    Before Document: 
    hai hello my daily salary is two thousand and five and your salary is five billion. my age is 
    twenty-five. 
    After Document: 
    hai hello my daily salary is # and your salary is #. my age is #. 
    All the text numbers and i put the # symbol.. 
    I am trying this code: 
    #include <iostream>
    #include <fstream>
    #include <string>
    using namespace std;
    ifstream myfile_in ("input.txt");
    ofstream myfile_out ("output.txt");
    string line;
    void find_and_replace( string &source, string find, string replace ) {
    size_t j;
    for ( ; (j = source.find( find )) != string::npos ; ) {
    source.replace( j, find.length(), replace );
    myfile_out << source <<endl;
    cout << source << endl;
    int main () {
    if (myfile_in.is_open())
    int i = 0,j;
    //string strcomma ;
    // string strspace ;
    while (! myfile_in.eof() )
    getline (myfile_in,line);
    string strcomma= "two";
    string strspace = "#";
    find_and_replace( line , strcomma , strspace );
    i++;
    myfile_in.close();
    else cout << "Unable to open file(s) ";
    system("PAUSE");
    return 0;
    Please help me.. Give me the correct code..

    Open the file as a RandomAccessFile. Check its length. Declare a byte array as big as its length and do a single read to get the file into RAM.
    Is this a simple text file (bytes)? No problem. If it's really 16-bit chars, use java.nio to first wrap the byte array as a ByteBuffer and then view the ByteBuffer as a CharBuffer.
    Then you're ready for search/replace. Do it as you would in any other language. Be sure to use System.arraycopy() to shove your bytes right (replace bigger than search) or left (replace smaller than search).
    When done, a single write() to the RandomAccessFile will put it all back. As you search/replace, keep track of size. If the final file is smaller than the original, use a setLength() to the new size to avoid extraneous data at the end.

  • PE 13 crashes due to incompatible video driver detected. Running on Win 7 SP1 with ATI 540v video card/driver.  Deleting bad driver file in adobe program data does not fix the problem,  it simply replaces the text file and crashes again.  My video driver

    PE 13 crashes due to incompatible video driver detected. Running on Win 7 SP1 with ATI 540v video card/driver.  Deleting bad driver file in adobe program data does not fix the problem,  it simply replaces the text file and crashes again.  My video driver is just fine.  Any help out there?

    rb
    Your video card driver may be fine for something, but just not compatible with Premiere Elements 13/13.1.
    For those with the display card error, the answers include
    a. assure your video card/graphics card driver version is up to date according to the web site of the manufacturer of the card -
    if necessary consider a driver roll back.
    b. determine in Device Manager/Display Adapters if the computer is using 2 cards instead of 1
    c. delete the BadDrivers.txt file
    the rationale for that deletion is found in post 10 of the following older post...principle applies to 13 as well as 9.
    Re: Premiere Elements 9 Tryout Serious Display Problem
    Have you looked for computer ATI card settings that might be more compatible with Premiere Elements 13/13.1?
    When is the program crashing - just opening a new project or rather crashing if editing a particular video format at the Timeline level?
    ATR

  • To replace the Text like "History,Back" with Images in Page Title bar

    Hi All,
    My requirement is to change the Text like "History,Back Forward" Texts with the Images in the Page Title bar.Under theme editor I dont have an option to replace with Image.
    I checked with the com.sap.portal.navigation.pagetoolbar.par file.I am not getting exactly where to replace the Text with Images.
    Please let me know if I am referring to the correct par file and where to make changes.
    Regards
    Akshaya
    Edited by: Akshaya Bhat on Jun 9, 2009 2:58 PM

    Hi,
    It depends if the WDJ application has made another navigation.
    History saves any navigations made by the user (TLN/DTN,etc) or navigation done by applications in code (wdDoNavigate, EPCM.doNavigate).
    So it can go back to previous view , or previous iview the user was at...
    Regards,
    Tal.

  • How to find and replace the text present in the url

    I have a column of type NCLOB with some text having url's in between as shown below:
    ========================================================================
    This text is for testign purpose.This text is for testign purpose.
    <A PL/SQL <U PL/SQL </U> </A>
    Thsi text is also for testign purpose.This text is for testign purpose.
    <A http://forums.oracle.com> <U oracle metalink> </U> </A>
    This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.
    ========================================================================
    Requirement:
    ========
    Requirement is to implement the find and replace functionality.
    I just need to check whether the search text is present in the url or not?
    Suppose if search for orcale.com, since its part of the url so the search should be successful otherwise search should be unsuccessful.
    Here I can give you the hint like, always the url lies between the anchor tags *(<A </A>).*
    Tahnks in Advance.

    I had I think a similiar question the other day thay I Frank and Michaels answered for me.
    not sure if I totally have what you want but.
    WITH t
            AS (SELECT '<A PL/SQL <U PL/SQL Thsi text is also for testign purpose.This text is for testign purpose.
    <A http://forums.oracle.com> This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.This text is for testign purpose.
                          txt
                  FROM DUAL)
    SELECT REGEXP_SUBSTR (REGEXP_REPLACE (txt, '(.*<A)|(</A>.*)'), 'oracle.com')
      FROM tthe first part the regexp replace part gets the text between a start and end point you mentioned that would be <A and </A>
    the regexp substr just looks for the phrase oracle.com in the text between those two points.
    Edited by: pollywog on Oct 6, 2010 8:26 AM

  • Replacing the text in a file

    I am having sql loader control file. In that, the value for INFILE is 'C:/MYDATA_<YYYY>_<MM>_<DD>.txt'. The filename changes daily based on sysdate.
    Since there is some limitation in sql loader, I am planning to run the PL/SQL scheduled program in apps which will read the control file and replace the infile with the correct file name (exa: MYDATA_2010_09_23.txt).
    The control file <test.ctl> is:
    LOAD DATA
    INFILE 'c:/mydata_<yyyy>_<mm>_<dd>.txt'
    BADFILE 'c:/mydata_<yyyy>_<mm>_<dd>.bad'
    DISCARDFILE 'c:/mydata_<yyyy>_<mm>_<dd>.dsc'
    APPEND
    INTO TABLE interface_stg
    FIELDS TERMINATED BY '|' TRAILING NULLCOLS
    A_DATE DATE "YYYY-MM-DD",
    USER_NAME,
    DESCRIPTION,
    NAME
    Please help me to achieve this.
    Thanks in advance.

    ok. In that case, write a Shell script, in which you can generate the file_name as per current date and pass it to SQLLDR command that you use in shell script.
    Now register the Shell Script as an executable in oracle applications, and schedule the concurrent program as per your requirements which becomes automated with no manual interventation.
    Edited by: AP on Sep 23, 2010 9:23 AM

  • Can I edit/replace the text of a business card I scanned as a pdf?

    I'm using PSE 9 on Windows XP with SP3.
    My wife and I are in an organization called Love on a Leash which brings dogs to people in
    hospitals, nursing homes, assisted living facilities, etc. They have a very nice business card
    that we can use on the visits. I scanned in the card for our chapter leader into Acrobat.
    Then I opened that pdf in PSE. All I really need to do is change the name, e-mail and
    phone number and we would be set. But I thought before I started hunting and pecking I'd
    post to see if there was an easy/best way to accompish that task.
    Thanks for any help or advice.

    Hey, I tried that and that worked great.
    I hadn't used the Clone Stamp tool before.
    Thanks for the tip.
    I also found a way to duplicate the color (I think).
    When I started the Text Tool, I clicked in the box in the tool bar that has a bubble that says 'Set the text color'.
    That brings up the Select the color window.
    From there I can navigate out to my card image and the pointer changes to the Eyedropper.
    There I can pick up a drop of the color that I need. Another problem solved!

  • Replace the text in DUTCH language to ENGLISH in sap-scripts

    1)In a layout am having a text say "posisdvnsdb" in dutch language i know the form name print prog name and the window name.
    how can i find whether it is hardcoded or getting the text from print program by looking at the script editor
    solution required urgently

    Hello,
    If you know thw window name then check the text editor. If the text is hardcoded inside the window.
    Else check any std. text is called inside the window
    Starting with /: INCLUDE.
    Cheers,
    Vasanth

  • How do I take a pdf flyer after conversion and replace the text?

    I downloaded the acrobat program that will convert a pdf file into a Word document.  Now that I am there how do I replace text on this flyer to my own?

    Once you have converted the original PDF file into a Word document, you'll need to open the document in Microsoft Word to do the editing.

  • Find & Replace the text and apply paragraph style in indesign CS2.

    Hai below script are working in cs4 - cs5.5. i need to run the script in indesign cs2.
    can you please help.
    Main();
    function Main() {
        var foundItem;  
        var doc = app.activeDocument;
        //app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
    app.findTextPreferences.findWhat = "^p";
           //app.findTextPreferences.appliedParagraphStyle = "head";
        var foundItems = doc.findText();
        for (var i = 0; i < foundItems.length; i++) {
            foundItem = foundItems[i];
            foundItem.applyParagraphStyle(doc.paragraphStyles.item("content body indent"), false);
         app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.NOTHING;
         var myDocument = app.activeDocument;
    //Clear the find/change text preferences.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    //Set the find options.
    app.findChangeTextOptions.caseSensitive = false;
    app.findChangeTextOptions.includeFootnotes = false;
    app.findChangeTextOptions.includeHiddenLayers = false;
    app.findChangeTextOptions.includeLockedLayersForFind = false;
    app.findChangeTextOptions.includeLockedStoriesForFind = false;
    app.findChangeTextOptions.includeMasterPages = false;
    app.findChangeTextOptions.wholeWord = false;
    //Search the document for the string "copy" and change it to "text".
    app.findTextPreferences.findWhat = "^p";
    app.changeTextPreferences.changeTo = "^p";
    myDocument.changeText();
    //Clear the find/change text preferences after the search.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    abc();
    function abc() {
        var foundItem;  
        var doc = app.activeDocument;
        //app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
    app.findTextPreferences.findWhat = "*";
           //app.findTextPreferences.appliedParagraphStyle = "head";
        var foundItems = doc.findText();
        for (var i = 0; i < foundItems.length; i++) {
            foundItem = foundItems[i];
            foundItem.applyParagraphStyle(doc.paragraphStyles.item("RealEstate"), false);
         app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.NOTHING;
         var myDocument = app.activeDocument;
    //Clear the find/change text preferences.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    //Set the find options.
    app.findChangeTextOptions.caseSensitive = false;
    app.findChangeTextOptions.includeFootnotes = false;
    app.findChangeTextOptions.includeHiddenLayers = false;
    app.findChangeTextOptions.includeLockedLayersForFind = false;
    app.findChangeTextOptions.includeLockedStoriesForFind = false;
    app.findChangeTextOptions.includeMasterPages = false;
    app.findChangeTextOptions.wholeWord = false;
    //Search the document for the string "copy" and change it to "text".
    app.findTextPreferences.findWhat = "*";
    app.changeTextPreferences.changeTo = "";
    myDocument.changeText();
    //Clear the find/change text preferences after the search.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    ab();
    function ab () {
        var foundItem;  
        var doc = app.activeDocument;
        app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
        app.findTextPreferences.findWhat = " ^ ";
    app.changeTextPreferences.changeTo = " ";  
        //app.findTextPreferences.appliedParagraphStyle = "head";
        var foundItems = doc.findText();
        for (var i = 0; i < foundItems.length; i++) {
            foundItem = foundItems[i];
            foundItem.applyParagraphStyle(doc.paragraphStyles.item("day"), false);
        app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.NOTHING;
         var myDocument = app.activeDocument;
    //Clear the find/change text preferences.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    //Set the find options.
    app.findChangeTextOptions.caseSensitive = false;
    app.findChangeTextOptions.includeFootnotes = false;
    app.findChangeTextOptions.includeHiddenLayers = false;
    app.findChangeTextOptions.includeLockedLayersForFind = false;
    app.findChangeTextOptions.includeLockedStoriesForFind = false;
    app.findChangeTextOptions.includeMasterPages = false;
    app.findChangeTextOptions.wholeWord = false;
    //Search the document for the string "copy" and change it to "text".
    app.findTextPreferences.findWhat = "^";
    app.changeTextPreferences.changeTo = "";
    myDocument.changeText();
    //Clear the find/change text preferences after the search.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;

    @s_ashok – you'll find the right methods and properties in the CHM file for InDesign CS2 at:
    http://www.jongware.com/idjshelp.html
    Just a few hints:
    InDesign CS2 does not support GREP search/replace, so every line in your code that points to GREP does not work.
    Further: "app.findTextPreferences" and "app.changeTextPreferences" were "app.findPreferences" and "app.changePreferences" in InDesign CS2. And then there were no "findChangeTextOptions" or any counterpart for that in CS2…
    That should get you running…
    I have no InDesign CS2 installed to debug, so this is all I can say…
    Uwe

  • TS3276 When I try to attach a pdf file to an e-mail the pdf is opened in the e-mail, replacing the text. How do I attach it as a file?

    When I try to attach a pdf file to an e-mail it opens and is pasted into the e-mail. How do I attach it as a file?

    It is an attachment, it is the way Apple Mail program displays it. When you add the attachment by either using the attach clip or drag and drop, have your cursor were you want the file to be, i.e. under text you have already written.
    You can test for yourself that they are still attachments, log into the web account of your email if it as one and send an email to yourself from Apple mail with an attachment and on the web account it will show as an attachment.

  • How to hyper link the text that comes from database ?

    Hi all,
    Jdev Ver :11.1.1.4.0
    I have one usecase like, to highlight(using af:commandlink) the keywords from some content..
    And i have some set of keywords, and where ever the keywords appears in the content i need to show those words as a af:commandlink in the page ..
    Anyone aware of this kind of usecase ? Please suggest some ideas..
    thanks,
    Gopinath J

    Hi,
    It is not straight forward, here is the sample code to do that where i replaced the text key with the hyperlink and bounded it to outputText
        <af:outputText value="#{<Bean>.text}" escape="false"/>
        //variable text inside bean with setters and getters
        private String text = "This is a sample text where the text key is shown as hyperlink";
        public void setText(String text) {
            this.text = text;
        //replaces the text "key" references with the hyperlink
        public String getText() {
            text = text.replace("key","<a href=\"http://google.com\">key</a>"); //escape sequence the quote to provide value for href
            return text;
        }Sireesha

  • What happened to the "Text Edits Tool" in Acrobat X?

    I know the answer is "it went away" but, seriously, please bring it back. In Acrobat 9, when you activated the "Text Edits Tool," it would automatically switch between insert, delete, and replace text in a context-sensitive way. You just had an active tool cursor - if you highlighted text and started typing, it would "replace" the text. If you clicked in one spot and started typing, it would "insert" text. If you highlighted text and clicked the Delete key, it would "delete" text. All this with one tool, that stayed active the entire time you were using it.
    Now, in Acrobat X, you have 3 different tools. You have to click to select the tool - mark the change. Click to select the next tool and mark that change. And on and on. And while you can right-click on any single tool and select "Keep tool selected" - there's no way to make that the default behavior. And that doesn't help when switching back and forth between activities.
    I know that the Selection Tool can now almost serve as the old "Text Edits Tool" - this works quickly with delete, but requires the tilde shortcut for insert or replace. Basically one extra step for each edit than there was with the Text Edits Tool.
    One might think that that little extra click isn't a big deal - but when you are marking up a PDF all day, every day, it adds up.

    I assume you're talking about commenting and markup rather than editing the text of the document itself.
    The keyboard shortcuts are  designed to do exactly what you want. With the multi-select tool active (I beam + black arrow on the toolbar):
    Select some text and press the Insert key - a new Replace text annotation is created and the note panel opened for typing. Press Esc to close the note
    Click to place the cursor within some text and press the Insert key - a new Insert text annotation is created and the note panel opened.
    Select some text and press the Delete key - a strikeout annotation is created (no note this time but you can add one by double-clicking)
    The idea of selecting something and 'just typing' to activate a markup event could not be retained as it interfered with the single-key accelerator mode.

  • Replace Filename text by start/end position?

    I could do this in php, but I know nothing of applescript. The main function I need is PHP's substr_replace, to rename files in a passed array, by start/end string positions, with passed text.
    Basically I'm looking for an applescript function to add to an Automator workflow, that will replace filenames with text, by character position. The applescript function would have 4 parameters, (files:Array, startPosition:int, endPosition:int, replaceWith:String). The first is an array of the files passed by Automator's "Get Selected Files" func, then the starting and ending positions for what is to be replaced, finally followed by the string to replace with.
    So something like,
    function renameFilenamesByPosition(files, startPos, endPos, replaceWith)
    for(i=0;i<count(files);i++)
    file = files;
    oldName = basename(file);
    newName = substr_replace(oldName, replaceWith, startPos, endPos);
    rename(oldFilename, newName);
    Any help in coming up with an applescript that I can do this, and be inserted into an Automator workflow, is MUCH APPRECIATED!! I often have files with number tags, that I'd like to have removed.

    I had a substring handler that converted fairly readily, but I was looking for something more general-purpose to put into an Automator action. Using an action is good for making the interface not quite so ugly, but there is a bit more to do to make sure it is robust enough to take whatever the other actions can throw at it. I finally decided on an action that trimmed an adjustable number of characters from the beginning or end, with an option to add a text variable - something that the existing rename doesn't do.
    As for my replacement handler, the main difference is that it uses the normal AppleScript index ranges, and the index items can also be text strings. There is also a bit more code to take care of stuff like negative or swapped indexes (yours definitely doesn't like that). It does work differently than the PHP function, which is probably not what you were looking for.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 340px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on run -- examples
    set TheText to "00012-myfile.jpeg"
    ReplaceTheText of TheText between 1 thru 6 by ""
    -- ReplaceTheText of TheText between "000" thru "-" by ""
    -- ReplaceTheText of TheText between 1 thru "-" by "xxxx"
    display dialog "\"" & the result & "\""
    end run
    to ReplaceTheText of SomeText between StartItem thru EndItem by ReplacingText
    replaces the text between the specified items with ReplacingText
    item searches are from left to right (beginning to end)
    if an item is not found, the replacement is from the beginning or end
    parameters - SomeText [text]: the text to modify
    StartItem [mixed]: the starting item or index (negative number is from the end)
    EndItem [mixed]: the ending item or index (negative number is from the end)
    ReplacingText [Text]: the replacement text
    returns [text]: the modified text, or the original text if error (index out of range, etc)
    set SomeText to SomeText as text
    set TextCount to (count SomeText)
    if class of StartItem is in {integer, real} then
    if StartItem is less than 0 then set StartItem to ((TextCount + 1) + StartItem) -- make positive index
    if (StartItem is greater than TextCount) or (StartItem is less than 1) then return SomeText -- out of range
    else
    set StartItem to offset of (StartItem as text) in SomeText
    if result is 0 then set StartItem to 1 -- the beginning
    end if
    if class of EndItem is in {integer, real} then
    if EndItem is less than 0 then set EndItem to ((TextCount + 1) + EndItem) -- make positive index
    if (EndItem is greater than TextCount) or (EndItem is less than 1) then return SomeText -- out of range
    else
    get (offset of (EndItem as text) in (text StartItem thru -1 of SomeText))
    if result is 0 then
    set EndItem to TextCount -- the end
    else
    set EndItem to StartItem + result + (count EndItem) - 2
    end if
    end if
    if StartItem is greater than EndItem then set {StartItem, EndItem} to {EndItem, StartItem} -- swap
    if StartItem is not 1 then
    set StartItem to text 1 thru (StartItem - 1) of SomeText
    else
    set StartItem to ""
    end if
    if EndItem is not TextCount then
    set EndItem to text (EndItem + 1) thru TextCount of SomeText
    else
    set EndItem to ""
    end if
    return StartItem & ReplacingText & EndItem
    end ReplaceTheText
    </pre>

  • Opening files and viewing the text

    I'm trying to write a method to open a .doc file and display the text to screen, the program runs but nothing appears on the screen. Is the code below the correct way or is it flawed.
    class Open implements ActionListener
              public void actionPerformed(ActionEvent event)
                   try {
                   JTextPane view = app.setScreen();
                 BufferedReader in = new BufferedReader(new FileReader("outfilename.doc"));
                 String str;
                 while ((str = in.readLine()) != null) {
                 view.setText(str);     
            in.close();
        } catch (IOException e) {
         }

    I'm trying to write a method to open a .doc file and
    display the text to screen, the program runs but
    nothing appears on the screen. Is the code below the
    correct way or is it flawed.
    class Open implements ActionListener
              public void actionPerformed(ActionEvent event)
                   try {
                   JTextPane view = app.setScreen();
    BufferedReader in = new BufferedReader(new
    w FileReader("outfilename.doc"));
         String str;
         while ((str = in.readLine()) != null) {
         view.setText(str);     
    in.close();
    atch (IOException e) {
    Hard to tell why you aren't getting any output without more of the program.
    One thing I see is that this classes replaces the text of JTextPane with the last string read from the file. If the last string were a blank line then you would have nothing to show.
    If you are assuming this is a reasonable size document then you might consider appending each line read into as StringBuffer then set the text of the JTextPane to the contents of the StringBuffer after the reaches then end.

Maybe you are looking for

  • Zen Micro, Windows Media 10 converts MP3 to WMA when copyi

    My music files stored on the computer are MP3 encoded at 92kbs. When I copy a track to my Micro, an automatic conversion to WMA format takes place before the track is copied over. Now, in an ideal world I wouldn't mind a conversion to MP3 at 60kbs to

  • What can be erased from internal once iTunes has been copied to external?

    I was running out of internal space so i decided to run my iTunes from an external hd... now I just need to know what folders or information is safe to erase from my internal hd.

  • Mbp weird startup screen?

    just got my new 2.16ghz 17"mbp - and i'm a bit concerned about the startup screen. The very first screen (which on all my other macs is a clean mid grey with a very clean logo and spinning clock) is very very noisy, with a logo that looks like a rats

  • Files been saved with a conflict extension

    SInce I upgraded from Lightroom 4.3 to version 5.0  I and having problems when saving files to my computer. The anomaly is that it isn't all the time. The files are being saved with a .conflict extension.  when exported from Lightroom. - For example

  • Converting from microsoft to MAC

    i am trying to find out how i convert all my emails and contacts from outlook PST files over to a mac software prog. and what is the best prog on the mac to use for this