在线编辑服务器 /* * CodePress regular expressions for Perl syntax highlighting * By J. Nick Koston */ // Perl Language.syntax = [ { input : /\"(.*?)(\"|
|<\/P>)/g, output : '"$1$2' }, // strings double quote { input : /\'(.*?)(\'|
|<\/P>)/g, output : '\'$1$2' }, // strings single quote { input : /([\$\@\%][\w\.]*)/g, output : '$1' }, // vars { input : /(sub\s+)([\w\.]*)/g, output : '$1$2' }, // functions { input : /\b(abs|accept|alarm|atan2|bind|binmode|bless|caller|chdir|chmod|chomp|chop|chown|chr|chroot|close|closedir|connect|continue|cos|crypt|dbmclose|dbmopen|defined|delete|die|do|dump|each|else|elsif|endgrent|endhostent|endnetent|endprotoent|endpwent|eof|eval|exec|exists|exit|fcntl|fileno|find|flock|for|foreach|fork|format|formlinegetc|getgrent|getgrgid|getgrnam|gethostbyaddr|gethostbyname|gethostent|getlogin|getnetbyaddr|getnetbyname|getnetent|getpeername|getpgrp|getppid|getpriority|getprotobyname|getprotobynumber|getprotoent|getpwent|getpwnam|getpwuid|getservbyaddr|getservbyname|getservbyport|getservent|getsockname|getsockopt|glob|gmtime|goto|grep|hex|hostname|if|import|index|int|ioctl|join|keys|kill|last|lc|lcfirst|length|link|listen|LoadExternals|local|localtime|log|lstat|map|mkdir|msgctl|msgget|msgrcv|msgsnd|my|next|no|oct|open|opendir|ordpack|package|pipe|pop|pos|print|printf|push|pwd|qq|quotemeta|qw|rand|read|readdir|readlink|recv|redo|ref|rename|require|reset|return|reverse|rewinddir|rindex|rmdir|scalar|seek|seekdir|select|semctl|semget|semop|send|setgrent|sethostent|setnetent|setpgrp|setpriority|setprotoent|setpwent|setservent|setsockopt|shift|shmctl|shmget|shmread|shmwrite|shutdown|sin|sleep|socket|socketpair|sort|splice|split|sprintf|sqrt|srand|stat|stty|study|sub|substr|symlink|syscall|sysopen|sysread|system|syswritetell|telldir|tie|tied|time|times|tr|truncate|uc|ucfirst|umask|undef|unless|unlink|until|unpack|unshift|untie|use|utime|values|vec|waitpid|wantarray|warn|while|write)\b/g, output : '$1' }, // reserved words { input : /([\(\){}])/g, output : '$1' }, // special chars { input : /#(.*?)(
|<\/P>)/g, output : '#$1$2' } // comments ] Language.snippets = [] Language.complete = [ { input : '\'',output : '\'$0\'' }, { input : '"', output : '"$0"' }, { input : '(', output : '\($0\)' }, { input : '[', output : '\[$0\]' }, { input : '{', output : '{\n\t$0\n}' } ] Language.shortcuts = [] /* * CodePress regular expressions for Java syntax highlighting */ // Java Language.syntax = [ { input : /\"(.*?)(\"|
|<\/P>)/g, output : '"$1$2'}, // strings double quote { input : /\'(.*?)(\'|
|<\/P>)/g, output : '\'$1$2'}, // strings single quote { input : /\b(abstract|continue|for|new|switch|assert|default|goto|package|synchronized|boolean|do|if|private|this|break|double|implements|protected|throw|byte|else|import|public|throws|case|enum|instanceof|return|transient|catch|extends|int|short|try|char|final|interface|static|void|class|finally|long|strictfp|volatile|const|float|native|super|while)\b/g, output : '$1'}, // reserved words { input : /([^:]|^)\/\/(.*?)(//$2$3'}, // comments // { input : /\/\*(.*?)\*\//g, output : '/*$1*/' }// comments /* */ ] Language.snippets = [] Language.complete = [ { input : '\'',output : '\'$0\'' }, { input : '"', output : '"$0"' }, { input : '(', output : '\($0\)' }, { input : '[', output : '\[$0\]' }, { input : '{', output : '{\n\t$0\n}' } ] Language.shortcuts = [] /* * CodePress color styles for PHP syntax highlighting */ b {color:#000080;} /* tags */ big, big b, big em, big ins, big s, strong i, strong i b, strong i s, strong i u, strong i a, strong i a u, strong i s u {color:gray;font-weight:normal;} /* comments */ s, s b, strong s u, strong s cite {color:#5656fa;font-weight:normal;} /* attributes and strings */ strong a, strong a u {color:#006700;font-weight:bold;} /* variables */ em {color:#800080;font-style:normal;} /* style */ ins {color:#800000;} /* script */ strong u {color:#7F0055;font-weight:bold;} /* reserved words */ cite, s cite {color:red;font-weight:bold;} /* */