This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libgcj/51718] New: Regular Expression doesn't match < literal


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51718

             Bug #: 51718
           Summary: Regular Expression doesn't match < literal
    Classification: Unclassified
           Product: gcc
           Version: 4.4.5
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libgcj
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: HootOwl7777@gmail.com


gcj produces the output
Logical network [DebugOutput<9>] has no load. -> TLogical Tnetwork
[TDebugOutput<T9>] Thas Tno Tload.

Orical's java run on windows produces the output
Logical network [DebugOutput<9>] has no load. -> Logical network
[DebugOutputT9>] has no load.

public class quickTest{
    public static void main( String[] args ){
        String message = "Logical network [DebugOutput<9>] has no load.";

        System.out.println( message + " -> " + message.replaceAll( "\\<", "T" )
);
    }
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]