Text parsing tool - need suggestion

I need to do the following on a text file, tab separated.
The lines I'm interested in begin all with 4 digits; other lines must remain untouched.
The structure of a line is:
4-digit code
start
end
desciptive string
If the "end" of line X is equal to the "start" of line X+1, the end of the first line must be replaced by (for instance) --- ; I need to compare line 1 and 2, then line 2 and 3, then line 3 and 4, and so on. If a line doesn't begin with 4 digits, it must be printed literally and the comparison must be done with the following line.
Something like:
line 1 begins with 4 digit, so compare it with the following line
line 2 begins with text: print it and skip to the following for the comparison with line 1
line 3 begins with 4 digit: use it for the comparison with line 1 and then compare it with the following line
line 4 begins with 4 digit: use it for the comparison with the previous line and then compare it with the following line
### example input ###
Some garbage text
0123 001 003 dfghdfhg
4569 002 003 fdsygiusdg
Some other garbage text
5001 003 005 fguoiauhg
4786 005 007 fdhgsdhg
5641 007 008 kgjhlks
4455 009 010 dlkhsjsdf
### example desidered output ###
Some garbage text
0123 001 003 dfghdfhg
4569 002 --- fdsygiusdg
Some other garbage text
5001 003 --- fguoiauhg
4786 005 --- fdhgsdhg
5641 007 008 kgjhlks
4455 009 010 dlkhsjsdf
Can someone suggest the right tool for this and give some hints?

I've added my own comments to the code:
#!/usr/bin/perl
use strict;
use warnings;
# initialize an array to hold the matches from a line that fits our regular expression
# we initialize it here to make it global so we can use it in the loop
my @last_line = ();
# the stack will temporarily hold all the lines that don't match the regular expression
# we initialize it here too so that we can use it in the loop
my $stack = '';
# here's the main loop... it gets run once for each line of input
# the "my $line = <STDIN>" sets "$line" to the value of the next line on STDIN
# the "defined()" function is just to make sure that we get all of the input because
# perl can interpret some strings and digits as "False"
# without the "defined()" part, the actual value of each line would be used
while (defined(my $line = <STDIN>))
# first we need to decide how to print the lines
# the tricky part is that before we print one line,
# we need to check the NEXT line to see if it's "start"
# is this line's "end"
# we also need to keep the junk text in the right order,
# which means that we can't print the last line or any of
# the junk lines between it and the next matching line
# until we've checked it so we dump the junk lines on
# a stack that we can print after we've printed the last
# matching line
# here we check for lines that begin with 4 digits,
# followed by spaces, digits, spaces, more digits,
# then whatever's left on the line
# we capture the first 4 digits and the following spaces in first group
# the "start" in the second group
# the spaces between the "start" and the "end" in the third group
# the "end" in the fourth group
# and then the rest of the line in the fifth group
# the "m" at the beginning is not necessary as it defaults
# to matching, but I prefer to be explicit when sharing code
# to make it clearer... you could skip it
if ($line =~ m/^(\d{4}\s+)(\d+)(\s+)(\d+)(.+\n)$/)
# not we assign the matches to an array
# remember that arrays are 0-indexed, so
# group 1 will be at [0], etc
my (@current_line) = ($1,$2,$3,$4,$5);
# check if the "start" of the current line
# (group 2, index 1) matches the "end" of the
# last line (group 4, index 3)
if ($last_line[3] eq $current_line[1])
# if it does, replace each character in
# the "end" of the last line with "-"
$last_line[3] =~ s/./-/g;
# print the last line by joining the 5 groups
# together in a string without spaces then
# print all the junk lines that came after it
# before the current matching line
print join ('',@last_line), $stack;
# make the current line the "last line" for
# the comparison with the next matching line
@last_line=@current_line;
# clear the stack because we've printed those
# lines that were in it already
$stack = '';
# otherwise, the line didn't match our regular express
else
# so drop it on the stack for later
# if we printed it now, it would be printed before
# the last matching line
$stack .= $line;
# now we've run through all the input but we haven't
# printed the last matching line because we always waited
# for the next matching line to compare its "end" with the
# next "start"
# now there's nothing more to compare so we can print
# the last line and the stack
print join ('',@last_line), $stack;
Let's look at a modified version of your example input (with line numbers) and what happens when the script is run
1 Some garbage text
2 0123 001 003 dfghdfhg
3 4569 002 003 fdsygiusdg
4 Some other garbage text
5 Even more garbage text
6 5001 003 005 fguoiauhg
7 4786 005 007 fdhgsdhg
8 5641 007 008 kgjhlks
9 4455 009 010 dlkhsjsdf
@last_line is initalized (empty) and so is $stack
line 1 doesn't match the regex so it get's dropped on the stack
line 2 matches the regex
line 2's "start" (001) doesn't match @last_line's "end" (which is empty) so no changes are made to @last_line's "end"
print @last_line (""), followed by the stack (line 1) and clear the stack
@last_line = line 2
line 3 matches the regex
line 3's "start" (002) doesn't match @last_line's "end" (003) so no changes are made
print @last_line (line 2) followed by the stack ("")
@last_line = line 3
line 4 doesn't match the regex so it's dropped on the stack
same for line 5 so the stack is now line 4 + line 5
line 6 matches the regex
line 6's "start" (003) matches @last_line's (line 3's) "end" (003) so replace "003" with "---"
print @last_line (line 3) followed by the stack (line 4 + line 5)
etc
Without the stack, lines 4 and 5 would have been printed before line 3 because we were holding on to it for comparison with line 6.
(I sense another one of those "you have too much time on your hands" comments in this thread... I can't help it though, I like to help, plus it's good exercise to explain how you've programmed something and why)
Last edited by Xyne (2009-03-10 20:34:35)

Similar Messages

  • Why do I get a full screen window of the "Text Edits" tool...?

    I got Acrobat 8 and when I mark some text with the Text Edits tool and afterwards types som replacements, I just get one big pop-up box filling the whole screen instead of the normal sized in the left margin as usual. And I am not able to see what I'am typing since this kinda lies outside the screen picture. Is this a matter of settings - or a bug, or anyone else tried the same?
    Memebers of my work group use the same version with the same updates without problems.

    If you can't boot in the usual way, try a safe boot. During startup, you’ll see a progress bar, and then the login screen, which appears even if you normally log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. If you have more than one user account, you must be logged in as an administrator to carry out these instructions. Safe mode is slower than normal, and some things won’t work at all. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the startup volume is on a software RAID, you can’t boot in safe mode. If you're able to boot, launch the Console application in any of the following ways: ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.) ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens. ☞ Open LaunchPad. Click Utilities, then Console in the icon grid. Select the most recent panic log under the heading System Diagnostic Reports on the left. If you don't see that heading, select   View ▹ Show Log List   from the menu bar. Post the entire contents of the panic report — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • I'm soooo angry because ever since i updated my firefox to 3.6.15 the text size tool bar is no longer available for me , will it be coming back in the future ? It worked fab and I miss it

    Once I updated my firefox to 3.6.15 the text size tool bar is no longer available for me and I want to know will this function be replaced eventually with the new updates ?

    well shame on me ! i did as you suggested and downloaded the new extension, restarted and found the extension in tools, along with my old extensions for increasing/decreasing the page size etc..... I have more than I need now :)
    mahalo nui loa, teri aipia

  • Need suggestion on Multi currency and Unicode character set use in ABAP

    Hi All,
    Need suggestion. In one of the requirement I saw 'multi-currency and Unicode character set experience in FICO'.
    Can you please elaborate me how ABAPers are invlolved in multi currency as I think this is FICO fuctional area.
    And also what is Unicode character set exp.? Please give me some document of you have any.
    Thanks
    Sreedevi
    Moderator message - This isn't the place to prepare for interviews - thread locked
    Edited by: Rob Burbank on Sep 17, 2009 4:45 PM

    Use the default parser.
    By default, WebLogic Server is configured to use the default parser and transformer to parse and transform XML documents. The default parser and transformer are those included in the JDK 5.0.
    The built-in WebLogic Server DOM factory implementation class is com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl.
    The DocumentBuilderFactory.newInstance method returns the built-in parser.
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();

  • Need suggestion for choosing Java development enviroment

    Hi Evereyone,
    I am new to Java Desktop Application.I need help on choosing proper Java technologies and development tool.
    We have an existing CLIENT/SERVER based distributed control system, which was developed in C++(Server side) and VB(Client GUI).Now we are think of migrating the system to Java platform.
    Here is the outline:
    We want to create web based application that will run on windows and linux (linux on embedded PC).
    The application should be able to support 10 � 100 users at once accessing/editing database.
    We will also need to create a communication server that will run on web server P.C. that will communicate tcpip to field panels/log to db, as well as allow web screens to send/receive commands with field panels etc.
    Could any one give me some suggestion about it?
    I am thinking of Using J2SE 5.0, including RMI, JDBC and Swing for GUI. As for field panels, may choose J2ME.
    Thank you very much in advance.

    Thanks, zadok .
    Actually, I don't have the system requirements neither. All I know is the following outline:
    "We want to create web based application that will run on windows and linux (linux on embedded PC).
    The application should be able to support 10 � 100 users at once accessing/editing database.
    We will also need to create a communication server that will run on web server P.C. that will communicate tcpip to field panels/log to db, as well as allow web screens to send/receive commands with field panels etc."
    It is a interview question, which need me to do research and give some suggestions. What I want to know is to figure out what kind of Java technology is necessary for developing this system because I want to make sure I head to right direction.
    I know somehow it is hard to give suggestion based on this limited information.
    One more thing I was confusing is the server-side architecture.
    I need suggestion about sever side architecture:
    a. write a dedicated server-side program, which act
    as communication server to monitor and control field
    panel, also act as server-side applicaiton by using
    RMI to communicate with Client-side communication.
    b. choose a general web server architecture. Put
    everything in server side in Web Server, for example
    Tomcat AS container, implementing the Communication
    server as Web Service and the request from
    Client-side go to Web Server first, then dispatch to
    a proper web service.Why did you not include this information in the original question!
    Why don't you just use Tomcat?
    For your answer, "Why don't you just use Tomcat?", does it mean Tomcat without Web Service will be enough for this system development? Could you give me some detail about it?
    Thank you very much, zadok.

  • Acrobat 9.2.0 Update Breaks Text Box Tool, Possibly Introduces a New Security Flaw.

    Anyone have any ideas for this one?
    Once we upgraded to version 9.2.0 (This is a major security release that fixes a Javascript security flaw) our text box tool no longer works the way we want it and crashes the program.
    Try this:
    1. Open any PDF document on a  Windows XP SP3 computer with Adobe Acrobat 9.2.0.
    2. Add the 'Text Box Tool'  to the toolbar by right-clicking the toolbar and selecting 'MoreTools' then placing a checkbox next to the 'Text Box Tool'.
    3. Click the 'Text Box Tool' on the toolbar and draw a new textbox anywhere on the PDF document.
    4. Click out of the textbox to cancel typing mode, then single click back on the textbox that you just created.
    5. Right-click the textbox that you created and select 'Properties..."
    6. Under the 'Appearance' tab,
    a. Select Style: No Border
    b. Select Fill Color: No Color
    c. Check the box 'Make Properties Default'
    d. Click OK.
    7. Click the Text Box Tool again, and draw another textbox (Since there is no border you will not see it but you will still be drawing a textbox).
    8. Let go of the mouse when you are done drawing your textbox rectangle and the program will crash at this point.
    Results:
    1. "An internal error occurred." dialog box is displayed.
    2. After clicking ok the following "Microsoft Visual C++ Runtime Library" dialog box is displayed:
    "Runtime Error!
    Program: C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe
    R6025
    - pure virtual function call
    3. After clicking ok another dialog box is displayed:
    Error signature
    AppName: acrobat.exe AppVer: 9.2.0.124 ModName: acrobat.dll Offset: 000509dd
    4. The same error has occurred on all five computers that we tested the new version on.
    Expected results: A new textbox is created and you may start typing in text (This was the behavior in version 9.1.3).
    Additional Information
    At times, we need to add information to PDF files (i.e missing dates, etc). We have always used the Text Box Tool to do this with no border, and with no fill color as this is the EASIEST and FASTEST way to add information to PDF files in a precise manner. We want the fill color to be transparent so that we can fit text in between and exactly on lines easier, and so that there is not a solid background box behind the text. We want no border because a border around text that needs to go on a line looks stupid. Up until version 9.2 this procedure worked fine. Now, the program will crash. Perhaps this even adds another security vulnerability if the crash could be exploited. We want to maintain security by patching Adobe to address the JavaScript vulnerability that was addressed in version 9.2.0, however, we are not able to update our users as the new version breaks the fundamental purpose that we use Adobe Acrobat for. We are stuck with the vulnerable version 9.1.3 until this problem is addressed. Disabling JavaScript is not an option either, as we use a Java plug-in on a daily basis.
    Any thoughts would be great, I have attached screenshots of the errors.

    The question still is not answered.
    The problem continues in Acrobat 8.1.7 for Windows, even after updating toAcrobat  8.2.0. ( I can't comment on whether recent updates to Acrobat 9 fix the problem in Acrobat 9.)
    The internal error after text insertion problem occurs even with PDF documents created in Acrobat 8, i.e., not only old versions of PDF files. We have the text box insertion icon in the toolbar, and the properties set to "no color" for the box and "0" width for the text box lines, as other commentators have noted.
    The problem did not exist when Acrobat 8 Pro was installed, it was introduced by one of the updaters.
    The main reason we use Acrobat, rather than much cheaper PDF-creation software, is to annotate PDF files (including inputting data into spaces in standard forms).
    So justify the high price of Acrobat and fix the problem please, Adobe !

  • Adobe Acrobat 5.0 - Text Free Tool Problem

    I'm using Adobe Acrobat 5.0 on my office pc.
    When I use text free tool to key in the text, the letters are not visible.
    Therefore you will not able see letters when you start typing or keying in the text box.
    Is there any solution? Pls help......

    I was successful in installing AA5 in Win7 Starter as a test. It works except that I changed the printer port to file (AcroTray or the Distiller Assistant of AA5 does not work in Win7). You can open the files that are created in Distiller to create PDFs. You may be able to use watched folders to automate the process to some degree.
    I suspect that your question is more of having problems reading PDF files in AA5. That is a different issue. It is not a Win7 compatibility issue, but one of needing a newer PDF viewer. I have AA5 on one XP machine that I use Reader X on for seeing the newer files. I do have to deal with some conflicts between AA5 and ARX, but I can deal with that (many folks lose there minds on that).
    There is one other option that might be a major problem. Many folks are getting Win7 on 64-bit machines. In that case, you will have to be sure AA5 runs in 32-bit compatibility.
    At least that should give you some ideas of what might work. If a 64-bit machine, you may definitely have a problem -- I never tested that combination.

  • How to change the font size of Text box tool ?

    How to change the font size of Text box tool ?
    I am using Acrobat PDF 6.0
    Tools > Advanced Commenting > Text Box Tool
    I need to know how to change the font size. The default font size is too big.
    let me know
    Thanks

    I do not have AA6 available right now (I can check at home this evening). I am also using AA Pro, not Std. In AA7, there is a text box tool that is a commenting tool. When I started typing, a properties toolbar came up that had the font size and such. I haven't figured out how to get the toolbar after the fact. In AA8, I selected the text box tool and then went to view and selected the properties bar (the font size and all showed then), or use Ctrl-E when editing the text. I have not been able to figure out how to edit the text in a text box after you have created it - think it is a mental block right now. Bill

  • How to implement text selection tool

    Hello,
        I need to develop one plug-in. On click of menu, the cursor should change to text selection tool.
       On selection of text, I need to get coordinates of text.
      How to do this. Please help me to solve this issue.
    Thanks,
    Shilp

    Hello,
            Thanks for your response.
            I have implemented the function for AVToolRec as follows.
            AVToolRec AVRect;
            AVRect.size = sizeof(AVToolRec);
            AVRect.GetType = ASCallbackCreateProto(GetTypeProcType, &ToolGetType);
            AVRect.DoClick = ASCallbackCreateProto(DoClickProcType, &DoClick);
            AVRect.AdjustCursor = ASCallbackCreateProto(AdjustCursorProcType, &AdjustCursor);
            AVAppRegisterTool(&AVRect);
            ACCB1 ASBool ACCB2 AdjustCursor(AVTool tool, AVPageView pageView, Int16 x, Int16 y)
                   AVSysSetCursor((AVCursor) LoadCursor(NULL, IDC_CROSS));           //Works fine for cross
       I want to develop the cursor as acrobat provides.. "Selection tool for text and images"
       I tried to change the cursor to IDC_BEAM,  But it's not useful. Is it possible to create the cursor as acrobat provides and get coordinates for the text selection.
      Please help me to solve this.
    Regards,
    Shilp

  • Showing dynamic text on tool tip

    Hi Gurus,
    I have the following requirements :
    In our system we have to show the Hijri dates for the corresponding Gregorian Date in Standard Oralce Self Service Forms on Mouse Over of that text as tool tip or by some other means.
    Can anyone suggest solution for this.
    In custom table we have stored Hirji and corresponding Gregorian dates.
    I can create a view object which can query the Hijri date from the database for the Gregorian date.
    Problem is how to display this Hijri date as Tool tip .
    Thanks
    Suresh

    import oracle.apps.fnd.framework.webui.OADataBoundValueViewObject;
    //Code to display Dynamic ToolTip on Column
    OAAdvancedTableBean TableBean=(OAAdvancedTableBean)webBean.findChildRecursive("TableName");
    TableBean.prepareForRendering(pageContext);
    OAMessageStyledTextBean ItemName=(OAMessageStyledTextBean)TableBean.findChildRecursive("ItemId);
    OADataBoundValueViewObject ExpTip = new OADataBoundValueViewObject(ItemName, "VoAttribute");
    ExpType.setAttributeValue(oracle.cabo.ui.UIConstants.SHORT_DESC_ATTR, ExpTip);
    Thanks
    Babu

  • Low level Hex disk edit & search util needed- suggestions please?

    low level Hex disk edit & search util needed- suggestions please?
    Maybe It's just late & I've had a bad day.... but I haven't needed a low level Hex disk edit & search utility suitable for an Intel 10.4.x Mac until now and can't seem to locate one.
    There should be plenty of free/shareware options (because they're handy and not particularly hard to write ... and every tech head needs one some time)...
    Any suggestions please?
    [I haven't bothered with the commercial stuff - like tech tool/Norton/*insert name here* Recover/repair, Something Genius etc. etc. because they are all without exception either unnecessary (just pretty shells for the underlying UNIX/X utils) useless AND greedy $-gougers, just useless, or just money gougers so I couldn't even say whether any still have a 'feature' like the old Norton Disk editor app had - but a quick look about suggest not...]
    grumble
    Any specific suggestions/links, please?
    TIA

    they are all without exception either unnecessary (just pretty shells for the underlying UNIX/X utils) useless AND greedy $-gougers, just
    useless, or just money gougers
    Such a high-esteem for fellow human beings - and
    programmers...
    You know, there are some good decent nice people
    behind those names?
    You'd be amazed at how much testing goes into a product.
    [SNIP]
    g'day Hatter...
    Yes, I know there are some good decent nice people behind those names..fellow human beings - and fellow programmers (so yes, I do know...) In previous incarnations I have 'thunk up' and developed, Marketed & supported considerably more complex Apps & systems myself - I even know some of the people you mention personally - and they are usually decent Blokes/women but normally, it isn't the programmers who make the decisions on pricing/features/support/performance/upgrade costs & cycles etc...
    My only error was, I agree, the phrase 'without exception' - but (mainly) only because I haven't bought/tested & used all of them very very recently. So I offer my apologies to those to whom my remarks should not apply (long, late night/early morning frustration...)
    However, I also offer a few simple pertinent examples:
    One 'top name' Utility company had a 'save your Mac HD' product on the market for some time that was almost guaranteed to TRASH it irretrievably but did NOT say so - nor did they help or compensate those they harmed.
    Several are selling what amount to simple, pretty, GUI shells for 'free' or OS-included command line tools - no more, no less but do NOT say so and are asking good money for the 'software'.
    Many are asking ridiculous prices for "regular upgrades" so you can keep their tool current with your Mac OS - one wants US$100/year for it, another, $15 per u/g, others, US$25 or $40 per u/g; one asks 'only' $10 - and these 'upgrades' are happening 3,4,5,6 times per year and are necessary for the Marketing company to keep their product Saleable to new purchasers and new Macs (as well as for important Bug Fixes - and only co-incidentally to keep it performing with your current Mac and OS - which is what you paid them for in the first place).
    I won't pay for a product 3, 6 or 9 times and I won't advise my clients to: It's not unreasonable for a person to expect a 'sensible lifetime/currency' of Product X for Computer Y - say 3 years (e.g. AppleCare). I wouldn't object to paying for an "upgrade" at that point - IF it's worth the money.
    Software is Waaay too expensive in many cases and is simply inviting 'piracy' - from people who have already PAID for the product: sadly, they are killing their own Gooses.
    Seriously, one product costs ca. US$100 to Buy in the first place
    To keep it actually working for you costs about the same again Per Year - a 3 year 'sensible lifetime' or 'currency' cost of US$300 or $400! [That'll buy a lot of 'bare drives' to put in a handy Firewire case for automatic backups in Background, differential backups etc. and other simple practices which render this product type largely unnecessary ].
    For what? A relatively simple set of utilities which would actually cost the company involved less than $5 total each - over 3 years - to make available to existing ( or 'current') owners. [Applecare 'complete' Hardware and Software warranty & support on a US$2000 iMac - which includes Tech Tools Pro Deluxe or somesuch costs about US$165 for 3 years. Total.]
    Having designed, developed, Marketed, supported & maintained more complex Applications to/for a sizeable user-base (in US terms) over multiple complete Series of Product 'life-cycles' - regular Updates and all, I think I know where the pirates are.
    These practices have been rampant in the MSWindows™ market for a longtime. It's a real shame to see it in the Mac world.
    I have all the esteem in the world for those fellow human beings who deserve such - and programmers who are 'good decent nice people'.
    I have none to spare for monopolists, 'exploitationists' or any of those who take unfair/unreasonable advantage of their fellow human beings - AND of programmers who are 'good decent nice people' (like, say, ME... .
    In any event, as I said: they are "killing their Gooses": I know of at least 6 software companies which went this route a while back. All are dead or dying.
    Thank you for your help - and the opportunity to apologise for 'mis-speaking'.
    all the best,
    orig g4 733, many others thru (the luvly) Macintels     New & old Macs, Wintels, MacIntels, other systems...

  • Mail and the text replacement tool

    Howdy all!
    I am trying to set mail up to remember the text replacement tool from within the app at edit - substitutions but it only seems to remember the setting per email. Anyone figure out how to keep it on for good? I have text replacement turned on system wide at system preferences - language and text - text tab. Any ideas would be awesome!
    Thanks in advance,
    Murch

    spiritboards wrote:
    Thanks,
    That what I was saying. I have turned on text replacement system wide but in mail it seems you can only turn it on per email message. Can anyone else confirm this?
    I have turned on global text replacement too and I don't have to do anything special in Mail now. it works in every new message automatically. what exactly do you need to do to make it work in individual messages?

  • Using Rich Text Formatting Tools for Email Message Text Box in  Webdynpro.

    Hi All,
    I would like to know whether WebDynpro provides a feature of including the Rich Text Formatting Tools (like Font, FontSize, Spell check .....) inside a Text Box.
    I need to allow the user to format/indent text inside the Email message box, before sending the Email.
    Is ABAP/Java Webdynpro providing us the above feature currently?
    Thanks for your time.
    Regards,
    Madhavi.

    Hi Armin,
    Thanks for your quick reply. Are there any release dates for when NWDS 7.1 be available?
    Thanks,
    Madhavi

  • Form - Can not use the Text Edit Tool in Adobe 9

    Hi,
    I was wondering if someone could please assist me, I have created a form but the text editing tool is coming grayed out, how am I able to get this function back?
    I simply need to remove one word and am unable to do so.  It tells me that some functionality is restricted for extended features and to save a copy.  but when i save a copy I am still unable to use the touch up tool.
    My Thanks in advance for your assistance.

    My guess is that you did use LiveCycle Designer and are not aware of that. Designer is accessed from Acrobat in the forms menu and may have come up even if you were not aware of it. If that is indeed the case, you can only edit the text in Designer.
    If it is an AcroForm, then it may be that you have activated Reader Rights or such. To remove Reader Rights, there is a specific procedure to use and unfortunately I do not remember it. If you have Reader Rights activated, indicate that and someone should be by that remembers how to remove the feature so you can edit the document. The removal is not as simple as one would think, but is rather straight forward. It involves saving or such -- I just don't remember and it is not something I am finding in the help menu.

  • Rt2:Full Text Parser

    Hi,
    if a collector cannot parse a records and calls sendUnsupported(), rt2 get's
    set to 'Full Text Parser'. In Sentinel 7, the event then is marked with a
    "binary" icon.
    I've seen this behavior with the Generic and the SLES collector. However if
    I do this from a customer collector build from the 2001.1r1 template, the
    event in Sentinel will have rt (SentinelProcessingComponent) set to the name
    of the collector plugin.
    Nobert

    Hi Bhuppyd,
    Thanks for your posting.
    Could you please post the sample code to create FULL-TEXT catalo? Here is the document for your reference:
    CREATE FULLTEXT CATALOG:
    http://msdn.microsoft.com/en-us/library/ms189520(v=sql.105).aspx
    In addition, I would suggest you provide more detail error message information so that we can do further investigation. Troubleshooting Errors in a Full-Text Population:
    http://technet.microsoft.com/en-us/library/ms142495(v=sql.105).aspx
    Regards,
    Elvis Long
    TechNet Community Support

Maybe you are looking for

  • Ipod Touch 2G cannot be restored

    Hi, I have an Ipod Touch 2G that is stuck on the loading spinner and it does not boot at all. First I tried to reset my device by pressing both Sleep/Wake and Home button but I didn't work, I just came back to the loading spinner screen. Second, I tr

  • BADI in Solution Manager

    Does anyone know a BADI in solution manager 4.0 to add some fields in document management table where we add in our project documentation. Thanks, Vinotha

  • Pinned JMS Messages

    Hi           I have a cluster of 4 weblogic 8.1 managed servers (ms1,2,3,4). There is a distributed JMS queue configured backed by a persistent physical queue on each of the managed servers. If, for whatever reason, I have to fail over to a disaster

  • Windows vs thinkpad power manager

    hi, as one can see, power adjustments can be made in 'thinkpad power manager' but also in windows itself (configurationmanagement) : what is preferrable ? since i and many others experience the fan noise problem ; and is it so that configuring in Win

  • Is the iPhone 4s in the stores yet?

    I know this isnt a problem, but i couldnt find anything on the net. Has anyone gone to an apple store today or yesterday? I think I am going this weekend and are wondering if the iphone 4s will be there on display. I know they are not available till