expression tag

115 questions


1 answers
96 views
0
I want python to extract only the specified parts of the body from the mail file.

Thank you for your help.In response to an email I sent in the past, There is an e-mail file with my writing written on it. ^^---------------------------------------------------------------------------...


1 answers
86 views
0
I would like to convert the attribute of the HTML link tag (a tag) in the VBA regular expression to add rel="noopener noreferrer" as a separate tag.

ExcelVBA is creating software that automatically prints HTML. so that all link tags can be opened with a separate tag (a separate window)I would like to convert it.And automatically for security measu...


1 answers
77 views
0
I want python to extract only the specified parts of the body from the mail file.

Thank you for your help.In response to an email I sent in the past, There is an e-mail file with my writing written on it. ^^---------------------------------------------------------------------------...


1 answers
64 views
0
Understanding Python Regular Expression Recursion

About Python regular expressions.interabc(inta){ if(a>0){ return1; } else { return 0; }}intxyz() { return aPtr->type;}I'm trying to replace the text like the one above as follows:interabc(inta...


1 answers
57 views
0
Regular Expression Questions

About regular expressions.(y|yes|yes|ok|ok)I only want it to be true when only is entered.I don't want the year to be true.Currently, we are looking to see if any of the above words are included in th...


3 answers
60 views
0
a way of writing in which a regular expression matches a character other than a parenthesis containing a specific character string

If there is a sentence below, please tell me how to write a regular expression that matches anything other than [switch].Hello. [feedback] Good morning.[switch] Thank you. Note: I also want to match t...

1 years ago

2 answers
56 views
0
You want to use a regular expression to delete the previous character of a particular character.

For example, when there is a character string ●N◆XY clock, the character XY is fixed, and ●N◆ takes various characters regardless of the symbol, and clock takes various kanji and hiragana.At this time...


3 answers
93 views
0
I want to use regular expressions to exclude surrogates and special classification characters.

I'm creating an app with UnityC# and To match the input characters on Android with the input characters on iPhone, I'm trying to replace using C#'s Regax, but it doesn't work.I have written the follow...


1 answers
73 views
0
If you use match in the following regular expressions, the program will not end running.

Hello, thank you for your continuous support.I am writing a program that uses regular expressions in javascript, but the program doesn't work.When I tried it, the following code encountered the same s...


1 answers
59 views
0
In regular expressions, only uppercase Roman letters and half-width spaces should be valid values.

I try to limit my credit card name using regular expressions, but it doesn't work.if(source.toString().matches(^[A-Z\s]+$.toRegex())&source.toString().matches(^[^\n]+$.toRegex())){}The above works...

1 years ago
« - 6 - »

© 2024 OneMinuteCode. All rights reserved.