#
lex
Here are 556 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
Feb 4, 2021 - C
WIN10系统自带五笔的码表与短语词库安装、管理工具( 可将五笔替换为郑码等其他形码输入法 ),并可增强微软五笔的设置、热键等功能。 发布后的软件仅890KB, 只要一个EXE文件( 绿色免安装 )。软件已自带五笔86、98、091、新世纪码表,以及极点五笔、QQ五笔、 微软五笔默认词库、昱琼词库、海峰词库等。甚至自带了郑码大词库、可以一键把微软五笔替换为郑码输入法。
windows
ime
input-method
hotkeys
windows-10
lex
windows10
wubi
win32
chinese-characters
hanzi
win10
aardio
keyboard-manager
zhengma
wubilex
wubi-lex-tool
-
Updated
Jan 22, 2021
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
Oct 24, 2020 - 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
Dec 25, 2019 - 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
aws
alexa
lambda
phone
voice
lex
answering-machine
0x4447
aws-connect
0x4447-product-answering-machine
0x4447-products
-
Updated
Jul 14, 2019
Parse MySQL schemas in PHP, fast
-
Updated
Dec 29, 2020 - PHP
Tools supporting continuous integration and deployment for NLU services.
-
Updated
Nov 23, 2020 - C#
An implementation of regular expressions for Python that uses a finite state automaton(正则引擎的Python实现,包括从NFA到DFA和DFA的最小化)
-
Updated
Sep 25, 2019 - Python
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++
parser
compiler
lex
lexer
lexical-analysis
yacc
c-compiler
syntax-analysis
compiler-design
semantic-analysis
intermediate-code
-
Updated
May 14, 2018 - Yacc
Toy general-purpose interpreted language written in Python
-
Updated
Nov 16, 2015 - Python
Simple "Hello World" for lex (flex) and yacc (bison) compiler of compilers
-
Updated
Oct 19, 2018 - Makefile
Open
子汉哥哥真是太强大了呀!
1
Cardinal2376
commented
Dec 24, 2018
厉害哦
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