I need to replace a string in a text using BACK file.

I need to replace a string in a text using BACK file. I can't do it manually because the file size is about 2 GB. Please suggest me a solution. Thanks in advance.

Hi ArunVL,

See the Microsoft article below and check if it helps.

With the help of MS-DOS Edlin utility to edit text files

http://support.Microsoft.com/kb/67706

Tags: Windows

Similar Questions

  • In Vista, it is possible to find and replace a specific name that I used many files on the hard drive?

    My apologies if someone already asked this (I couldn't find the answer however). I used the name of a person to dozens of (mostly Word) documents that are kept in many different files on my hard drive. I know that I can dig each document separately and then use hidden word and replace the tool to change the name. But this will inevitably take time. Is it possible to do a through - computer find and replace so that I don't have to do this exercise once? Any help gratefully received. Thank you.

    Hello

    I suggest you go through the article and check if it helps.

    Searching in Windows Vista, part 1

    http://Windows.Microsoft.com/en-CA/Windows-Vista/searching-in-Windows-Vista-part-1-secrets-of-the-search-box

    Searching in Windows Vista, part 2

    http://Windows.Microsoft.com/en-CA/Windows-Vista/searching-in-Windows-Vista-part-2-Start-menu-and-control-panel-search-tips

    Searching in Windows Vista, part 3

    http://Windows.Microsoft.com/en-CA/Windows-Vista/searching-in-Windows-Vista-part-3-using-advanced-search-for-those-hard-to-find-files

    Improve Windows searches using the index: frequently asked questions

    http://Windows.Microsoft.com/en-CA/Windows-Vista/improve-Windows-searches-using-the-index-frequently-asked-questions

    Hope this helps and let us know if you need more assistance.

  • String content of text in a file download

    Hello

    I have a text file on a web server, say http://www.lukeo05.com/file.txt

    How do I download the content of this file (a single line) and stored it in a string object?

    Thank you

    You can perform a HTTP GET to retrieve the file.

    Please review the sample application HTTPDemo and look around the forum - there are many examples.

    Also check the sticky thread Peter Strange on this forum - it contains toms of the info on the communications on the Blackberry platform.

  • How to replace the image on the layer using after effect API

    Hello everyone,

    I have a big problem, I need to replace the image on the layer using after effect API.

    Create a new film with my new image:

    AEGP_FootageH footageH = NULL;

    ERR (suites. FootageSuite5()-> AEGP_NewFootage (S_my_id,

    psd_path,

    & key1,

    NULL,

    FAKE,

    NULL,

    (& footageH));

    AEGP_ItemH layer_itemH = NULL;

    ERR (suites. FootageSuite5()-> AEGP_AddFootageToProject (footageH, new_folderH and layer_itemH));

    Then I have a film footageH Manager

    and Manager of my layer to the old image.

    AEGP_ItemH itemH.


    Please

    How to replace image on my layer exists?

    I have founded not nothing in Google, Documentation and examples.

    Hi mikhailv6888620 https://forums.adobe.com/people/mikhailv6888620>!

    Welcome to the forum!

    as I know there is no C API function for this.

    You can get the ID of the layer comp element and use AEGP_ExecuteScript() to find

    This point and change the source of the layer with the javascript API. (I do it

    as follows in one of my plug-ins)

    the text of this script is entirely internal in your plug-in. the user

    does not know that a call to java is involved... (if that matters to you)

  • Search and replace the string formatting

    Hello

    I try to do a search and replace the formatting of a string.

    In the example, I'm looking for the string 'SUCCESSFUL', but it must also begin by usbflash and some number + PASSED.

    I can't get the format to have a number between 1 and 99. The number of replacements should add up to 6 in this case. I tried with \d for any number, and I also tried [1-99].

    Make a right-click on the function search and replace the string.  There is an option to use regular Expressions.  Then give it a try.

    EDIT: You need to set the entry replace all to TRUE.

  • Find and replace the string function replaces line breaks when I only replaced spaces?

    I need to replace all instances of a space or a series of spaces to a line with commas (or tabs) multi string so I can throw in a worksheet.

    I use the regular expression [\s]+ and it works, but it is also to replace the end of lines (\r\n) too.

    How can I replace the spaces but leave the end of the lines intact?

    Right-click on the search string and to take '-' code display. Enter the space character (\s) correctly - you \\s right now.

  • Replace the string with the formatted text

    Hello all - I'm back to my beloved project...

    I want to replace a string by a TextSelction (formatted text) and began with the famous feature of Jang FindAndReplaceString.
    Since my replacement comes from another document (sourceDoc), I edited to targetDoc activeDoc and introduced a second document (sourceDoc).
    The replacePara actually comes from a stone where he had been placed to avoid switch backwards between the documents in a book (where to find and replace) and source documents. In another function, I learned that information on the table requires the sourceDoc must remain open.

    • Of course, everything works fine until I want to insert the replacelement:
      erase line 26 is the string
    • Given that I do not insert a string, I skip lines 28 and 29 and try try line 30
    • On line 30 DocumentSource is Document object and replacePare object TextSelection. However, sourceDoc.replacePara is not set and
    • (as a result?) line 31 past the current contents of the Clipboard.

    Of course, there is a fog around me... and I need some sunshine.

    function FindAndReplacePara (targetDoc, findString, sourceDoc, replacePara, loopMax) {
      var tr = new TextRange();
      var restoreTR, frame = 0, loopCounter = 0, replacementCounter = 0;
      var findParams = new PropVals();
      var firstPgf = targetDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;
      
      tr.beg.obj = tr.end.obj = firstPgf;             //  set up the starting text range as the very beginning
      tr.beg.offset = tr.end.offset = 0;              // of the flow. We'll move straight from beginning to end.
      trSaved = tr                                    // to come back after work
    
      findParams = AllocatePropVals(2);
      
      findParams[0].propIdent.num = Constants.FS_FindText;
      findParams[0].propVal.valType = Constants.FT_String;
      findParams[0].propVal.sval = findString;
      
      findParams[1].propIdent.num = Constants.FS_FindCustomizationFlags;
      findParams[1].propVal.valType = Constants.FT_Integer;
      findParams[1].propVal.ival = Constants.FF_FIND_CONSIDER_CASE;
    
      FA_errno = Constants.FE_Success;                // errno global, to be used to track the progress of the find and replace
      tr = targetDoc.Find(tr.beg, findParams);        // and do an initial find to get started.
      
      while(FA_errno === Constants.FE_Success && loopCounter++ < 2*loopMax) { //find and replace loop as long as we keep finding
        targetDoc.TextSelection = tr;                 // set up the text range to clear the original text
        targetDoc.Clear(0);                           // clear it
        
    //    targetDoc.AddText(tr.beg, replacePara);       // insert the new text at the original beginning of the text range
    //    tr.beg.offset += replacePara.length;          //  lets jimmy the text range in memory to place it directly after
        targetDoc.TextSelection = sourceDoc.replacePara;        // paste the whole replacement paragraph
        targetDoc.Paste (0);                          // <-- Current contents of clipboard is pasted !!!!
        if(FA_errno === Constants.FE_Success) {       // increment our return counter
          replacementCounter++;
        }
        FA_errno = Constants.FE_Success;              // ...  find the next instance. We'll reset FA_errno again just in case
        tr = targetDoc.Find(tr.beg, findParams);      // something screwy happened while we were replacing text.
      }
      targetDoc.ScrollToText(trSaved);                // we're done. Restore the document to it's original area of display
      return replacementCounter;
    } // --- end FindAndReplacePara
    

    Hi Klaus,

    Thanks for the explanation. I remember something like that GetTabRange of the way back. You have been quite patient and persistent with this project, indeed.

    So, as we are dealing with ranges of text here, I think that the only simple approach is to perform a copy and paste. There is no way to save a 'formatted' in a variable. The only super precise way would be to get a data structure of each text range TextItems in the sourceDoc, then meticulously recreate every element of the targetDoc. It would be very complicated, I think, so copy and paste seems the most logical. I wonder, though, if Miss me something, because I think that maybe you would have tried already so yes (?)

    In any case, I would do something like that, from line 30 of your original code sample (code untested here):

    App. ActiveDoc = sourceDoc;

    sourceDoc.TextSelection = replacePara;

    sourceDoc.Copy (0);

    App. ActiveDoc = targetDoc;

    targetDoc.Paste (0);

    ... etc.

    Does make sense, or am I barking the wrong tree, as they say?

    Russ

  • Replace the string value of table

    with cte as)

    Select val '123', 'abwec' double val1

    Union of all the

    Select "456" val, "mowerw" double val1

    Union of all the

    Select val '709', 'wkwere' double val1

    Union of all the

    Select val '078', 'awerwewerwreq' double val1

    )

    Select * from cte;

    -incoming string

    "asdasd123ewrwer@87w8eopiu456werwer@asdwer709@ewrwerewrwqqwezxder078 @..."

    need to replace like 'abwec' 123 and 456 as "mowerw" and 709 as wkwere and 078 as 'awerwewerwreq '.

    How to replace the string value of the string

    I'm going to the table which will have mapping information I need to see the incoming string and replace the appropriate value of the val to val1

    something like

    Of

    "asdasd123456werwer@asdwer709@ewrwerewrwqqwezxder078ewrwer@87w8eopiu @..."

    TO

    "asdasdabwecewrwer@87w8eopiumowerwwerwer@asdwerwkwere@ewrwerewrwqqwezxderawerwewerwreq@..."

    By using the TYPE clause.

    with cte as

    (

    Select val '123', 'abwec' double val1

    Union of all the

    Select "456" val, "mowerw" double val1

    Union of all the

    Select val '709', 'wkwere' double val1

    Union of all the

    Select val '078', 'awerwewerwreq' double val1

    ),

    input_tbl

    as

    (

    Select "asdasd123ewrwer@87w8eopiu456werwer@asdwer709@ewrwerewrwqqwezxder078 @..." input_str

    of the double

    )

    Select max (input_str) Dungeon (first order by desc NWR dense_rank) input_str

    de)

    Select rno, input_str

    de)

    Select rownum NWR

    val

    val1

    input_str

    count (*) over() cnt

    from cte

    Cross

    Join input_tbl

    )

    model

    dimension (NWR)

    measures (val, val1, cnt, CAST (input_str AS VARCHAR2 (4000)) input_str)

    (

    input_str [any] = replace (nvl (input_str [cv () - 1], input_str [cv ()]), val [cv ()], val1 [cv ()])

    )

    )

  • Replace the string in BPEL

    Hey all,.

    I need to replace the & with a + since the & just breaks the bpel process. Any ideas on how to make a replacement string to find all the the & and replace it with the +, I looked in the transformation and the entitlement activity, but did not find all the functions to help me with this.

    Any help would be appreciated.

    Thank you

    You can create an XSL template for string replacements, see the link given below:
    http://geekswithblogs.NET/Erik/archive/2008/04/01/120915.aspx

    If you are familiar with Java you can add a Java embedding activity and string replacement using the method of the replacement of the java.lang.String class.

    Diakité
    http://SOA-HOWTO.blogspot.com

  • My Apple Watch broke last week and I need to replace it as soon as POSSIBLE, technical support has expired but the coverage of active services

    My Apple Watch broke week last series only. FH * JC, I need to replace it as soon as POSSIBLE, the technical support has expired but the coverage of active services.

    Thank you

    < published by host >

    Contact Apple support (mail service may be available) or make a booking Genius Bar to make arrangements for your watch serviced (warranty, if it qualifies):

  • How do I identify an original 5 c iPhone screen. I need to replace mine.

    How do I identify an original 5 c iPhone screen. I need to replace mine. I am in Ghana and there is no apple here store. Please contact me

    < email published by host >

    I asked guests to remove your e-mail address. It is an invitation to spam. If you left the default settings for your account, you will probably have to automatically get an email notification of this response so there is no need to ask.

    No doubt if you shop for parts online, you have to trust that the source will be not only deliver, but deliver to the correct specification for your device. You must also be able to perform the repair. There isn't really any practice Council or recommendation that can be offered here.

    TT2

  • I need to replace the battery and AC adapter of the Satellite Pro U400-160

    I have a Satellite Pro U400-160.

    I need to replace the battery and the charger of my Toshiba, but I am wary about compatibility issues.

    Any battery for Satellite Pro U400 is suitable for mine?
    As I can't find which batteries are specifically suitable for my computer.

    (For example: is this a: http://www.amazon.es/Bater%C3%ADa-Toshiba-Satellite-U400-11V-7800mAh/dp/B0051A9Y88/ref=sr_1_cc_2?s=aps&ie=UTF8&qid=1366885340&sr=1-2-catcorr&keywords=satellite+pro+u400?)

    Is there a quick way to check if a battery / charger are compatible?

    Each battery and adapter you get from Toshiba has specific part number. All you have to do is use this same part number and order. You should be able to find on the internet.
    You can also get compatible parts you are ordering by the Toshiba authorized service provider in your country.

    By the way: all U400 models have the same construction and the similar specifications then all the batteries specified for U400 can be used on your U400-160.

  • Portege Z830 - screen broke and I need to replace

    Hello

    I have Toshiba Portege z830. My screen broke and I need to replace it.

    Is it possible to install an IPS display instead of the original LTN133AT25-601? What IPS screen is compatible with LTN133AT25-601?

    Hello

    The original LCD that has been used in Z830 was a 13.3 TFT color LCD "(HD) 1366 x 768."
    So if you want to use any other presentation, then you should pay attention to the size of the screen and the connectors.
    I think these are the most important key elements.

  • HP G62: I have hp g62 laptop that I need to replace the hard disk but I don't have a lap desk

    I have hp g62 laptop comes with windows 7 Home premium and Microsoft last year offered 10 edition windows Home premium.
    Suddenly the windows closed was a message "hard drive does not exist" or "boot device not found", said another time.
    I need to replace in the old hdd but I don't have a lap desk. The recovery file was recorded in a single partition on the old hard drive.
    How to get started with the new hard drive and recover the old windows, I need help please thank you.

    Concerning

    computer laptop laptops installed new hard drive there is message "no partition active" and "no boot device" what I need to do to install windows 10.
    I have no office to boot, I used to run the wind. last summer and 7 MS offered upgrade to the wind. 10 how premium and activated, of I need help thanks
    Concerning

  • Satellite M30X-115: I need to replace the screen

    Hello

    I need to replace the screen on my laptop but I can't find references one is on. Is it possible to have this references or references to a compatible standard model and of course, an easy to find the object: o)
    Thanks for the help of the Tower

    Hello

    As far as I know the Satellite M30X was delivered with a screen 15.4 "(1280 x 800) view wide TFT color display."

    Only the dimensions of the screen are important. So if you want you can search a 15.4 "display.
    By the way; the display is one of the most expensive parts of laptop. Perhaps a second hand M30X, or a display of second hand would be a better solution as to buy a new screen for around $ 300.

    Greetings

Maybe you are looking for

  • Airport utility cannot find the time Capsule, but wireless is fine

    All of a sudden my TC stopped taking backups but the wireless works fine. Airport utility stopped recognizing the TC suddenly... I think it started acting weird it's because last night, I unplugged the TC of the socket directly instead of turn off...

  • Organizer of photos on the top of iMac desktop computer

    I just bought a new iMac and have transferred data from my previous iMac. Also, I transferred the contents of iPhoto to Photos. (total about 13 000 pictures). I used to use iPhoto to organize and view my photos and Photoshop elements 11 as an externa

  • Virus infecting e-mail in mac air

    I think that my e-mail address is compromised by a virus. Sometimes it never ends download or send messages. In fact, many times it seems I sent messages, then were never sent. In addition, I have to force out several times. Can someone please advise

  • scan HP 4625 does not

    My scanner hp4625 problem does not

  • LeapTop for my daughter

    I just bought my daughter my own Leaptop computer laptop. the usb cable is properly connected to my computer for the leaptop. When I try to download the info from my computer to her Leaptop peronalization it says my screen resolution should be 800 to