[Bug libgcj/51718] New: Regular Expression doesn't match < literal
HootOwl7777 at gmail dot com
gcc-bugzilla@gcc.gnu.org
Fri Dec 30 17:30:00 GMT 2011
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" )
);
}
}
More information about the Java-prs
mailing list