Click here to Skip to main content
15,796,102 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
GeneralRe: remove parenthese from function like string Pin
Michael Eckstein18-Sep-22 5:55
Michael Eckstein18-Sep-22 5:55 
GeneralRe: remove parenthese from function like string Pin
moxol18-Sep-22 8:28
moxol18-Sep-22 8:28 
GeneralRe: remove parenthese from function like string Pin
Michael Eckstein18-Sep-22 9:01
Michael Eckstein18-Sep-22 9:01 
GeneralRe: remove parenthese from function like string Pin
moxol18-Sep-22 10:19
moxol18-Sep-22 10:19 
GeneralRe: remove parenthese from function like string Pin
Michael Eckstein18-Sep-22 21:22
Michael Eckstein18-Sep-22 21:22 
QuestionRegex to find out length Pin
RanCohen16-Aug-22 0:50
RanCohen16-Aug-22 0:50 
AnswerRe: Regex to find out length Pin
Richard Deeming16-Aug-22 1:14
mveRichard Deeming16-Aug-22 1:14 
AnswerRe: Regex to find out length Pin
Graham Breach16-Aug-22 3:12
Graham Breach16-Aug-22 3:12 
You could use a zero-length lookahead.

JavaScript
"1234345242342356789".replaceAll(/\d(?=\d{4})/g, "*")

QuestionNon Zero Number Pin
cad-one26-Jul-22 9:11
cad-one26-Jul-22 9:11 
AnswerRe: Non Zero Number Pin
k505426-Jul-22 11:46
mvek505426-Jul-22 11:46 
GeneralRe: Non Zero Number Pin
cad-one26-Jul-22 12:09
cad-one26-Jul-22 12:09 
QuestionRegex before match Pin
moxol20-Jul-22 23:09
moxol20-Jul-22 23:09 
AnswerRe: Regex before match Pin
Peter_in_278021-Jul-22 2:31
professionalPeter_in_278021-Jul-22 2:31 
GeneralRe: Regex before match Pin
moxol21-Jul-22 3:00
moxol21-Jul-22 3:00 
GeneralRe: Regex before match Pin
jsc4221-Jul-22 3:56
professionaljsc4221-Jul-22 3:56 
GeneralRe: Regex before match Pin
moxol21-Jul-22 4:55
moxol21-Jul-22 4:55 
QuestionPerl regex anchor merely matches at the position of the end of previous match period Pin
marbooth18-Jul-22 7:23
marbooth18-Jul-22 7:23 
AnswerRe: Perl regex anchor merely matches at the position of the end of previous match period Pin
marbooth18-Jul-22 18:18
marbooth18-Jul-22 18:18 
GeneralRe: Perl regex anchor merely matches at the position of the end of previous match period Pin
RedDk20-Jul-22 7:23
RedDk20-Jul-22 7:23 
QuestionIsn't ?= needless? Pin
Member 1570882016-Jul-22 23:38
Member 1570882016-Jul-22 23:38 
AnswerRe: Isn't ?= needless? Pin
Dave Kreskowiak17-Jul-22 7:28
mveDave Kreskowiak17-Jul-22 7:28 
GeneralRe: Isn't ?= needless? Pin
Member 1570882019-Jul-22 22:48
Member 1570882019-Jul-22 22:48 
GeneralRe: Isn't ?= needless? Pin
Dave Kreskowiak20-Jul-22 4:41
mveDave Kreskowiak20-Jul-22 4:41 
Questionregex code assistance for entering 600 in a input field Pin
Member 1568365422-Jun-22 5:13
Member 1568365422-Jun-22 5:13 
QuestionRe: regex code assistance for entering 600 in a input field Pin
Richard MacCutchan22-Jun-22 6:39
mveRichard MacCutchan22-Jun-22 6:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.