Click here to Skip to main content
15,921,113 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
QuestionSOLVED Qt implementation of regular expression Pin
jana_hus17-Jun-24 4:38
jana_hus17-Jun-24 4:38 
AnswerRe: Qt implementation of regular expression Pin
Richard MacCutchan17-Jun-24 6:37
mveRichard MacCutchan17-Jun-24 6:37 
GeneralRe: Qt implementation of regular expression Pin
jeron117-Jun-24 6:58
jeron117-Jun-24 6:58 
GeneralRe: Qt implementation of regular expression Pin
Richard MacCutchan17-Jun-24 11:07
mveRichard MacCutchan17-Jun-24 11:07 
QuestionPositive Lookbehind question Pin
tasoss7-Jun-24 14:01
tasoss7-Jun-24 14:01 
AnswerRe: Positive Lookbehind question Pin
Terry R 20239-Jun-24 16:50
Terry R 20239-Jun-24 16:50 
I would suggest reading up on lookbehinds @ Advanced Regex Tutorial—Regex Syntax[^] . You see the expression (?<=) can be used both as lookbehind before the match and lookbehind after the match.

The second regex, due to the "F" being first in the expression means it finds a "F", then attempts to look for an "a" before the "F" which does not fit your example text. So this is a lookbehind after the match, your first regex was a lookbehind before the match.

You should put the "F" together with the "a" inside the lookbehind. Maybe you didn't for some reason known only to you. Since you have provided very little context for the 2 expressions and examples I can't help any further currently.

Terry
GeneralRe: Positive Lookbehind question Pin
tasoss10-Jun-24 0:20
tasoss10-Jun-24 0:20 
QuestionREGEX to find space followed by number 1 then letter Pin
Richard Parker from London24-Apr-24 2:16
Richard Parker from London24-Apr-24 2:16 
AnswerRe: REGEX to find space followed by number 1 then letter Pin
Richard Deeming30-Apr-24 0:22
mveRichard Deeming30-Apr-24 0:22 
GeneralRe: REGEX to find space followed by number 1 then letter Pin
jschell30-Apr-24 12:21
jschell30-Apr-24 12:21 
QuestionPHP perl regular expression - URL not preceded by equal sign and possible single or double quote Pin
Doug Davis 202427-Mar-24 9:37
Doug Davis 202427-Mar-24 9:37 
QuestionModify Regex To Disallow Spaces Pin
mcfc4heatons26-Mar-24 11:03
mcfc4heatons26-Mar-24 11:03 
SuggestionRe: Modify Regex To Disallow Spaces Pin
Richard Deeming26-Mar-24 22:47
mveRichard Deeming26-Mar-24 22:47 
AnswerRe: Modify Regex To Disallow Spaces Pin
Terry R 202316-May-24 11:31
Terry R 202316-May-24 11:31 
QuestionMatching Floating Point Numbers Range with a Regular Expression Pin
Dagobert19-Feb-24 2:10
Dagobert19-Feb-24 2:10 
AnswerRe: Matching Floating Point Numbers Range with a Regular Expression Pin
Richard Deeming9-Feb-24 2:19
mveRichard Deeming9-Feb-24 2:19 
GeneralRe: Matching Floating Point Numbers Range with a Regular Expression Pin
trønderen9-Feb-24 6:25
trønderen9-Feb-24 6:25 
GeneralRe: Matching Floating Point Numbers Range with a Regular Expression Pin
Dagobert19-Feb-24 6:49
Dagobert19-Feb-24 6:49 
GeneralRe: Matching Floating Point Numbers Range with a Regular Expression Pin
jschell9-Feb-24 12:34
jschell9-Feb-24 12:34 
GeneralRe: Matching Floating Point Numbers Range with a Regular Expression Pin
Dagobert19-Feb-24 10:22
Dagobert19-Feb-24 10:22 
GeneralRe: Matching Floating Point Numbers Range with a Regular Expression Pin
jschell9-Feb-24 12:37
jschell9-Feb-24 12:37 
GeneralRe: Matching Floating Point Numbers Range with a Regular Expression Pin
Richard Deeming11-Feb-24 21:47
mveRichard Deeming11-Feb-24 21:47 
AnswerRe: Matching Floating Point Numbers Range with a Regular Expression Pin
Pete O'Hanlon12-Feb-24 0:04
mvePete O'Hanlon12-Feb-24 0:04 
QuestionRegular expression for City name Pin
KiranKumar V 20247-Feb-24 19:08
KiranKumar V 20247-Feb-24 19:08 
AnswerRe: Regular expression for City name Pin
Dave Kreskowiak7-Feb-24 19:19
mveDave Kreskowiak7-Feb-24 19:19 

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.