#
lex
Here are 687 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
Nov 6, 2021 - C
WIN10 自带微软五笔码表与短语替换与管理工具( 可将系统五笔替换为郑码、小鹤音形等 ),并可增强五笔设置、热键等功能。 发布后的软件仅930KB( 绿色免安装 )。软件已自带郑码、小鹤音形、五笔86、98、091、新世纪码表,以及极点五笔、QQ五笔、 微软五笔默认词库、昱琼词库、海峰词库等。
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
Oct 4, 2021 - 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
Oct 12, 2021 - 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
Parse MySQL schemas in PHP, fast
-
Updated
May 4, 2021 - PHP
aws
alexa
lambda
phone
voice
lex
answering-machine
0x4447
aws-connect
0x4447-product-answering-machine
0x4447-products
-
Updated
Jul 14, 2019
An implementation of regular expressions for Python that uses a finite state automaton(正则引擎的Python实现,包括从NFA到DFA和DFA的最小化)
-
Updated
May 23, 2021 - Python
Tools supporting continuous integration and deployment for NLU services.
-
Updated
Nov 23, 2020 - C#
parser
compiler
lex
lexer
lexical-analysis
yacc
c-compiler
syntax-analysis
compiler-design
semantic-analysis
intermediate-code
-
Updated
May 14, 2018 - 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++
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
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