Click here to Skip to main content
15,795,581 members
Home / Discussions / Regular Expressions
   

Regular Expressions

 
QuestionCorrect Expression For 'Any Character Including Whitespace' Pin
Sonhospa7-May-17 10:23
Sonhospa7-May-17 10:23 
SuggestionRe: Correct Expression For 'Any Character Including Whitespace' Pin
Richard MacCutchan7-May-17 22:22
mveRichard MacCutchan7-May-17 22:22 
GeneralRe: Correct Expression For 'Any Character Including Whitespace' Pin
Sonhospa8-May-17 0:12
Sonhospa8-May-17 0:12 
GeneralRe: Correct Expression For 'Any Character Including Whitespace' Pin
Richard MacCutchan8-May-17 0:30
mveRichard MacCutchan8-May-17 0:30 
AnswerRe: Correct Expression For 'Any Character Including Whitespace' Pin
Bernhard Hiller8-May-17 0:13
Bernhard Hiller8-May-17 0:13 
AnswerRe: Correct Expression For 'Any Character Including Whitespace' Pin
Sonhospa8-May-17 1:24
Sonhospa8-May-17 1:24 
GeneralRe: Correct Expression For 'Any Character Including Whitespace' Pin
Richard MacCutchan8-May-17 3:25
mveRichard MacCutchan8-May-17 3:25 
QuestionHow to retain characters preceding a match? Pin
Member 1297660431-Jan-17 16:44
Member 1297660431-Jan-17 16:44 
I'm using an application called Panorama X (see provue.com) which has a function, RegExReplace, which, in a block of text, replaces every occurrence of a string defined by a regular expression with a different string. For example,

RegExReplace(TextBlock,"^[;]","//")

will search a block of text called TextBlock for all lines beginning with a semi-colon and will replace the semi-colon with two slashes.

In some lines, the ";" is preceded by a number of spaces but I still want to change it. The only way I've been able to do this is to copy the characters before the ";" and do this:

RegExReplace(TextBlock,"^[ ]+[;]",<preceding spaces=""> +"//")

which is a little clumsy.

Is there a better way to do it? I'm very new to RegEx.

michael
AnswerRe: How to retain characters preceding a match? Pin
Peter_in_278031-Jan-17 20:27
professionalPeter_in_278031-Jan-17 20:27 
GeneralRe: How to retain characters preceding a match? Pin
Member 1297660431-Jan-17 21:50
Member 1297660431-Jan-17 21:50 
QuestionUsing back references to find data type naming standards violations Pin
Member 124482999-Apr-16 8:06
Member 124482999-Apr-16 8:06 
AnswerRe: Using back references to find data type naming standards violations Pin
George Jonsson16-Apr-16 19:36
professionalGeorge Jonsson16-Apr-16 19:36 
GeneralRe: Using back references to find data type naming standards violations Pin
Member 1244829917-Apr-16 18:20
Member 1244829917-Apr-16 18:20 
AnswerRe: Using back references to find data type naming standards violations Pin
George Jonsson17-Apr-16 20:13
professionalGeorge Jonsson17-Apr-16 20:13 
QuestionRe: Using back references to find data type naming standards violations Pin
Member 1244829919-Apr-16 7:54
Member 1244829919-Apr-16 7:54 
AnswerRe: Using back references to find data type naming standards violations Pin
George Jonsson19-Apr-16 19:52
professionalGeorge Jonsson19-Apr-16 19:52 
GeneralRe: Using back references to find data type naming standards violations Pin
Member 1244829923-Apr-16 5:25
Member 1244829923-Apr-16 5:25 
Questionnegation of an expression Pin
Vijjuuu.28-Feb-15 8:19
Vijjuuu.28-Feb-15 8:19 
AnswerRe: negation of an expression Pin
Richard Deeming2-Mar-15 3:52
mveRichard Deeming2-Mar-15 3:52 
AnswerRe: negation of an expression Pin
bulrush40026-May-16 1:57
bulrush40026-May-16 1:57 
QuestionHelp with regex HTML form validation Part 2 Pin
robwm110-Oct-14 11:18
robwm110-Oct-14 11:18 
AnswerRe: Help with regex HTML form validation Part 2 Pin
Matt T Heffron10-Oct-14 12:48
professionalMatt T Heffron10-Oct-14 12:48 
GeneralRe: Help with regex HTML form validation Part 2 Pin
robwm110-Oct-14 13:11
robwm110-Oct-14 13:11 
AnswerRe: Help with regex HTML form validation Part 2 Pin
Matt T Heffron10-Oct-14 13:26
professionalMatt T Heffron10-Oct-14 13:26 
GeneralRe: Help with regex HTML form validation Part 2 Pin
robwm110-Oct-14 13:34
robwm110-Oct-14 13:34 

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.