-
Example:
input = "500兆"
In python it is in chinese_mix.py
```python
def text_normalize(text):
numbers = re.findall(r"\d+(?:\.?\d+)?", text)
for number in numbers:
text = text.re…
-
**Description of the false positive**
CodeQL is reporting a log injection vulnerability even though I am deleting the problematic characters with Kotlin's `replace` function call with a Regex as it…
-
Splitting on a `Regex` from an empty string ("") leads to a page crash.
```
> import Regex
> everyCharacter = Maybe.withDefault Regex.never (Regex.fromString "")
{} : Regex.Regex
> Regex.split …
tesk9 updated
3 months ago
-
Text input
Match whole word
Match case(if disabled it's case insensitive)
Normal string comparison, or Regular Expression(Regex)
Then figure out a way to put these settings into multiple i…
Arnuh updated
3 weeks ago
-
no doubt having the regex replace is very powerful but sometimes you want to do simple a literal string replace.Where I encountered a problem is when I wanted to replace literal string that contains r…
-
**Is your feature request related to a problem? Please describe.**
The values to be entered in string fields may not always be text but they may have some internal structure (e.g. mail address, long/…
-
https://github.com/ansasaki/symbol_version/blob/f441d3446bcb325df9a3ae440313d30da2646952/scripts/symbol_version.py#L55-L73
1. the method is missing a doc string
1. is it expected that the error do…
-
# User Story:
As a Metaschema user, I want to use the OSCAL catalog schema to validate my catalog files. I use to validate my catalog against the schema .
However, Python's `re` module, for exa…
Rojax updated
2 weeks ago
-
I'm looking to lex a string like "${..}" where the ..'s represent other valid language tokens inside and am wondering what the best way to approach this is. I've tried to make a start and end token fo…
-
#### Community Note
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help th…