#
lex
Here are 733 public repositories matching this topic...
DFA regular expression library & friends
automata
regexes
fsm
compiler
regex
regexp
lex
finite-state-machine
lexer
lexical-analysis
compilers
lexing
compiler-principles
lexer-generator
nfa
regex-validator
finite-state-automata
finite-state-machines
dfa
-
Updated
Apr 3, 2022 - C
WIN10/11 自带微软五笔码表与短语替换与管理工具( 可将系统五笔一键替换为郑码、小鹤音形、表形码等 ),软件仅930KB( 绿色免安装 ),已自带郑码、小鹤音形、表形码、五笔86、98、091、新世纪等输入法的各种流行码表。
windows
ime
input-method
hotkeys
windows-10
lex
windows10
wubi
win32
chinese-characters
hanzi
win10
aardio
keyboard-manager
xhup
zhengma
wubilex
wubi-lex-tool
-
Updated
Feb 27, 2022 - HTML
The regex-centric, fast lexical analyzer generator for C++ with full Unicode support. Faster than Flex. Accepts Flex specifications. Generates reusable source code that is easy to understand. Introduces indent/dedent anchors, lazy quantifiers, functions for lex/syntax error reporting, and more. Seamlessly integrates with Bison and other parsers.
bison
flex
compiler
regex
regular-expression
fuzzy-matching
lex
pcre
lexer
lexer-generator
regex-pattern
regular-expressions
graphviz-dot
lexical-analyzer
regex-library
regex-engine
flex-regex
-
Updated
Apr 2, 2022 - C++
pablosichert
commented
Dec 15, 2019
Flex has a directive %option caseless to lex tokens in a case insensitive way.
Is there currently a way (besides using regular expressions) to accomplish the same?
LexRank algorithm for text summarization
-
Updated
Feb 9, 2022 - Python
Building Chatbots with React, Amazon Lex, AWS Lambda, & AWS Amplify
-
Updated
Jul 9, 2018 - JavaScript
A Lexical Analyzer Generator
-
Updated
Apr 10, 2019 - Common Lisp
AWS Lex based chatbot that calculates calories based on different fast food restaurants. This was an entry for a coding challenge on DevPost, and is actively used on Facebook Messenger. The issues list is actively managed as what defects or improvements are found by real world usage.
-
Updated
Feb 21, 2018 - JavaScript
Parse MySQL schemas in PHP, fast
-
Updated
Mar 5, 2022 - PHP
An implementation of regular expressions for Python that uses a finite state automaton(正则引擎的Python实现,包括从NFA到DFA和DFA的最小化)
-
Updated
May 23, 2021 - Python
aws
alexa
lambda
phone
voice
lex
answering-machine
0x4447
aws-connect
0x4447-product-answering-machine
0x4447-products
-
Updated
Jul 14, 2019
Tools supporting continuous integration and deployment for NLU services.
-
Updated
Feb 25, 2022 - C#
parser
compiler
lex
lexer
lexical-analysis
yacc
c-compiler
syntax-analysis
compiler-design
semantic-analysis
intermediate-code
-
Updated
May 14, 2018 - Yacc
A compiler that accepts any valid program written in C. It is made using Lex and Yacc. Returns a symbol table, parse tree, annotated syntax tree and intermediate code.
c
parser
frontend
compiler
ast
lex
syntax-tree
lexical-analysis
yacc
symbol-table
semantic-analysis
compiler-construction
intermediate-code-generation
parse-tree
-
Updated
Apr 3, 2022 - Yacc
NatLang is an English parser with an extensible grammar
parser
natural-language-processing
bison
flex
grammar
semantic-web
lex
linguistics
wordnet
bnf
yacc
visitor-pattern
parts-of-speech
chomsky
parser-framework
english-parser
-
Updated
Nov 22, 2018 - C++
C++ Mini Compiler using tools Lex and Yacc
parser
lex
syntax-tree
yacc
symbol-table
compiler-design
mini-compiler
code-optimization
quadruple
intermediate-code-generation
-
Updated
Apr 30, 2019 - Yacc
Toy general-purpose interpreted language written in Python
-
Updated
Nov 16, 2015 - Python
Improve this page
Add a description, image, and links to the lex topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the lex topic, visit your repo's landing page and select "manage topics."
Would it be possible to have the regex parser support character classes like
\wwithin other character classes? I had a regex pattern earlier that used the character class[0-9a-zA-Z_\.-], and I attempted to simplify it with[\w\.\-]. I didn't notice this library doesn't support doing that, and was wondering just how difficult that would be to implement. For the time being i'm just expanding