| Server IP : 85.214.239.14 / Your IP : 216.73.216.27 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/share/doc/re2c/examples/rust/reuse/ |
Upload File : |
// re2rust $INPUT -o $OUTPUT --input-encoding utf8
// This example supports multiple input encodings: UTF-8 and UTF-32.
// Both lexers are generated from the same rules block, and the use
// blocks add only encoding-specific configurations.
/*!rules:re2c
re2c:yyfill:enable = 0;
re2c:define:YYPEEK = "*str.get_unchecked(cur)";
re2c:define:YYSKIP = "cur += 1;";
re2c:define:YYBACKUP = "mar = cur;";
re2c:define:YYRESTORE = "cur = mar;";
"∀x ∃y" { return Some(cur); }
* { return None; }
*/
fn lex_utf8(str: &[u8]) -> Option<usize> {
let (mut cur, mut mar) = (0, 0);
/*!use:re2c
re2c:encoding:utf8 = 1;
re2c:define:YYCTYPE = u8;
*/
}
fn lex_utf32(str: &[u32]) -> Option<usize> {
let (mut cur, mut mar) = (0, 0);
/*!use:re2c
re2c:encoding:utf32 = 1;
re2c:define:YYCTYPE = u32;
*/
}
fn main() {
let s8 = vec![0xe2, 0x88, 0x80, 0x78, 0x20, 0xe2, 0x88, 0x83, 0x79];
assert_eq!(lex_utf8(&s8), Some(s8.len()));
let s32 = vec![0x2200, 0x78, 0x20, 0x2203, 0x79];
assert_eq!(lex_utf32(&s32), Some(s32.len()));
}