User Profile

Collapse

Profile Sidebar

Collapse
zeny
zeny
Last Activity: Aug 6 '08, 02:21 PM
Joined: Jul 31 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • zeny
    started a topic HELP !!! (Capture text between html tags)

    HELP !!! (Capture text between html tags)

    Hey ppl,

    How can we capture text between html tags using regular expressions? For example, how to capture the words "hello", "world", "bla", "bla" and "bla" in the following input:

    <br><i>hello world <br><br> bla bla bla <br>

    Best Regards
    See more | Go to post

  • zeny
    started a topic HELP !!! (Capture text between html tags)
    in Java

    HELP !!! (Capture text between html tags)

    Hey ppl,

    How can we capture text between html tags using regular expressions? For example, how to capture the words "hello", "world", "bla", "bla" and "bla" in the following input:

    <br><i>hello world <br><br> bla bla bla <br>

    Best Regards
    See more | Go to post

  • zeny
    started a topic HELP !!! (Regex: Capture text between html tags)
    in .NET

    HELP !!! (Regex: Capture text between html tags)

    Hey ppl,

    How can we capture text between html tags using regular expressions? For example, how to capture the words "hello", "world", "bla", "bla" and "bla" in the following input:

    <br><i>hello world <br><br> bla bla bla <br>

    Best Regards
    See more | Go to post

  • zeny
    started a topic Disabling Autocommit

    Disabling Autocommit

    Hello,

    Quoting postgresql documentation:

    "13.4.1. Disable Autocommit

    Turn off autocommit and just do one commit at the end. (In plain SQL, this means issuing BEGIN at the start and COMMIT at the end. Some client libraries may do this behind your back, in which case you need to make sure the library does it when you want it done.) [....] "

    In my opinion the documentation doesn´t...
    See more | Go to post

  • zeny
    replied to Transaction Isolation Level
    Thank u very much, it works under PgAdmin alright....
    See more | Go to post

    Leave a comment:


  • zeny
    started a topic Transaction Isolation Level

    Transaction Isolation Level

    Hi everyone!

    I´m using postgreql 8.3 and I know that the default transaction level in postgresql is READ_COMMITED, but how can I check the actual transaction isolation level at any time (in pgadminIII, preferably)?

    Regards
    See more | Go to post

  • zeny
    started a topic Size of the database

    Size of the database

    Hey,

    I´m using postgresql 8.3 and i need to know the size of a database in disk. How do i do that?

    Regards
    See more | Go to post

  • zeny
    started a topic Nonclustered indexes

    Nonclustered indexes

    Hi there,

    Is it possible to create nonclustered indexes? If so, how?

    Best Regards
    See more | Go to post

  • zeny
    started a topic HELP: Indexes

    HELP: Indexes

    Hi everybody!

    I have two questions concerning postgresql indexes:

    1- Does PostgreSQL support bitmap indexes?
    2- How does one create GIN indexes? (If you could give me an example, that would be great)

    Best Regards
    See more | Go to post

  • zeny
    started a topic Copy data with several delimiters

    Copy data with several delimiters

    Hey folks!

    Can anyone tell me how to add data to a table using "copy" with several delimiters? Is it possible?

    What i mean is:
    Copy <table_name> from <file_directory > using delimiters <delimiters>;

    How its done the "<delimiter s>" part?

    I tried several ways but i got out of ideas...

    Would be much appreciated for any help....
    See more | Go to post

  • zeny
    started a topic Charts
    in Java

    Charts

    Hi everyone!

    Do you know any open source Java API to create charts?

    Regards
    See more | Go to post

  • zeny
    replied to Help: XML and Schema
    in XML
    The second case obviously works, but the first one, although it´s perfectly logical, doesnt work! Can anyone tell why???...
    See more | Go to post

    Leave a comment:


  • zeny
    started a topic JDOM and XSD
    in Java

    JDOM and XSD

    Hi everybody! I´m doing this java program using JDOM and i get the error "The value of the element is invalid - The value '' is invalid according to its datatype 'Integer' " (I´m using Visual Studio 2005 as a XML program validator). How can a xsd element be either empty (like the empty string "") or an integer ???

    Would be most thankfull for any help!

    Best regards
    See more | Go to post

  • zeny
    started a topic Help: XML and Schema
    in XML

    Help: XML and Schema

    Hi everybody! I´m getting the error "The value of the element is invalid - The value '' is invalid according to its datatype 'Integer' " (I´m using Visual Studio 2005). How can a xsd element be either empty (like the empty string "") or an integer ???

    Would be most thankfull for any help!

    Best regards
    See more | Go to post

  • zeny
    replied to Java Regex: Parsing Problem
    in Java
    Thanks to you all, now i´ve made it! Very much apreciated for the help!

    Best regards
    See more | Go to post

    Leave a comment:


  • zeny
    started a topic Java Regex: Parsing Problem
    in Java

    Java Regex: Parsing Problem

    Hi everyone!

    How to split a string with parenthesis, since the parenthesis are characters used in regular expressions for grouping?

    For example, how to split the string "by Gregor Hohpe and Bobby Woolf (2003)" in a way that the result gives 2 strings: "by Gregor Hohpe and Bobby Woolf " and "(2003)"?

    I´ve tried unsuccessfully with several regular expressions like "(([0-9]))",...
    See more | Go to post

  • zeny
    started a topic Help: Eof
    in Java

    Help: Eof

    Hi everybody,

    My program reads user commands from the console until it finds an EOF. My question is: how does the program knows that an EOF has been inserted? And how does a user introduces an EOF as input through the console?

    I´m using the method below to read the input:

    static String readLn (int maxLg)
    {
    byte lin[] = new byte[maxLg];
    int lg = 0, car = -1;
    ...
    See more | Go to post

  • zeny
    started a topic FIFOS in C
    in C

    FIFOS in C

    Does anyone know how to empty a fifo(named pipe) after a read?

    if (mkfifo(fifo_di rectory,0777)==-1) perror("Error") ;
    desc= open(fifo_direc tory,O_RDONLY);
    if (desc==-1) perror("Error") ;

    char* message= malloc(PIPE_BUF *sizeof(char));

    while(1) {
    read(descritor, mensagem,PIPE_B UF);
    //here i would like to empty the pipe
    }


    ...
    See more | Go to post

  • zeny
    replied to __va_args__
    in C
    Probably you didnt declared a variable correctly, or the identifier is one thing and the compiler expects another, for example, you have an int and the compiler expects a double.
    See more | Go to post

    Leave a comment:


  • zeny
    replied to Binary files in C
    in C
    I think i´m right if i say that the binary files serve the purpose of storing serializable objects, like Hashtables, Vectors and any other objects of classes that you can create. Hope i´ve answered your question.

    Best regards
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...