Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.
-
meshgraphics #1
RegExp multiline
Can anyone make RegExp multiline work ? So far I've been replacing \n and \r
with <cr> to flatten the string, then switching back the CRs.
..
var re = new RegExp("(.*)<!-- OrdinarySiteMap -->.*<!-- OrdinarySiteMap
-->(.*)","m");
RegExp.multiline = true;
re.multiline = true;
var Slurp = re.exec(ExistOSMfile);
if (Slurp) {
var Topper = Slurp[1] + '<!-- OrdinarySiteMap -->';
var Bottomer = '<!-- OrdinarySiteMap -->' + Slurp[2];
...
meshgraphics Guest
-
cannot set multiline and wordwrap on uitextfield
hello, this is my first post here, I have a problem with making radiobutton text automatically wrap text into multiple lines when the text is longer... -
Using Multiline combo boxes
I was wondering if it is possible to make a combo box that has more than just one line of text. I want to be able to pull down the list and see... -
dynamic text multiline
I have text coming in via remoting. I can see the text, however it will not multiline for some reason. I have checked the height of the text box... -
multiline matching
Can someone explain to me how to do multiline matching? I am trying to extract three consecutive lines from a datafile containing multiple records... -
adobe multiline substitution
Hi, First off, I must apologise for cross posting. I am having difficulty creating a pdf document using perl cgi to do substitution for... -
Randy Edmunds #2
Re: RegExp multiline
meshgraphics,
Most people assume that the . wildcard means "match everything", but it
actually means "match eveything except \r and \n". Use (.\r\n) instead.
Another tip: most people also assume that * means match *first* (i.e.
smallest) match, but it actually means match *largest* match. This can
lead to undesired results and unnecessary performance penalty
(especially when searching across multiple lines). Use .*? or (.\r\n)*?
for minimum match.
HTH,
Randy
> Can anyone make RegExp multiline work ? So far I've been replacing \n and \r
> with <cr> to flatten the string, then switching back the CRs.
> ..
> var re = new RegExp("(.*)<!-- OrdinarySiteMap -->.*<!-- OrdinarySiteMap
> -->(.*)","m");
>
> RegExp.multiline = true;
> re.multiline = true;
>
> var Slurp = re.exec(ExistOSMfile);
>
> if (Slurp) {
> var Topper = Slurp[1] + '<!-- OrdinarySiteMap -->';
> var Bottomer = '<!-- OrdinarySiteMap -->' + Slurp[2];
> ...Randy Edmunds Guest
-
meshgraphics #3
Re: RegExp multiline
Ok Randy. Do most people know how multiline RegExp works? I don't see any evidence that you do.
meshgraphics Guest
-
Randy Edmunds #4
Re: RegExp multiline
> Ok Randy.
Ok, mr. anonymous.
No. I've answered this question many times.> Do most people know how multiline RegExp works?
You didn't even try what I said. Excuse me for answering off the top of> I don't see any evidence that you do.
my head and getting the syntax slightly wrong, it should be this:
(.|\n|\r)*?
Randy Edmunds Guest
-
Massimo Foti #5
Re: RegExp multiline
What I think is missing in DW is a "multiline" checkbox on the Search &
Replace GUI. With this checked DW should let "." match newlines as well,
just like the "\m" modifier does.
After all, we have a "Match case" checkbox that works like "\i". Since DW
doesn't allows modifiers inside the RegExp itself, all the available
modifiers should be exposed by the GUI.
As an alternative DW should understand modifiers that are entered inside the
GUI (either \i, \m or whatever the engine supports).
As it stands, it's not obvious at all for anybody who is familiar with
RegExp. Using (.|\n|\r)*? is just a counterintuitive workaround.
I asked for this features many times in the past. But I gave up a few years
ago...
--
----------------------------
Massimo Foti, web-programmer for hire
Tools for ColdFusion and Dreamweaver developers:
[url]http://www.massimocorner.com[/url]
----------------------------
Massimo Foti Guest
-
Randy Edmunds #6
Re: RegExp multiline
Hi Massimo,
Good to see you here!
It looked like the original poster was having problems in the code, so I
didn't even mention the UI :)
DW always does a multi-line search in the Search & Replace now (in CS3,
anyway -- can't remember which version we changed that). Of course, it
doesn't work if you use . for the reasons that I have already explained.
So, I'll mark your feature request as "fixed" :)
Randy
> What I think is missing in DW is a "multiline" checkbox on the Search &
> Replace GUI. With this checked DW should let "." match newlines as well,
> just like the "\m" modifier does.
> After all, we have a "Match case" checkbox that works like "\i". Since DW
> doesn't allows modifiers inside the RegExp itself, all the available
> modifiers should be exposed by the GUI.
>
> As an alternative DW should understand modifiers that are entered inside the
> GUI (either \i, \m or whatever the engine supports).
>
> As it stands, it's not obvious at all for anybody who is familiar with
> RegExp. Using (.|\n|\r)*? is just a counterintuitive workaround.
>
> I asked for this features many times in the past. But I gave up a few years
> ago...Randy Edmunds Guest
-
Massimo Foti #7
Re: RegExp multiline
"Randy Edmunds" <redmunds_nospam@adobe.com> wrote in message
news:fdu9lj$dor$1@forums.macromedia.com...Sorry Randy, but I don't think I explained my request well enough.> It looked like the original poster was having problems in the code, so I
> didn't even mention the UI :)
>
> DW always does a multi-line search in the Search & Replace now (in CS3,
> anyway -- can't remember which version we changed that). Of course, it
> doesn't work if you use . for the reasons that I have already explained.
>
> So, I'll mark your feature request as "fixed" :)
Modern RegExp engines supports modifiers:
[url]http://www.regular-expressions.info/modifiers.html[/url]
DW doesn't supports modifiers inside the pattern. Most likely this choice
was made to make life easier for people who don't know RegExp too well (most
users out there). Instead there is a checkbox that mimic the way the /i
modifier works.
What's missing is something that let you switch between /s and /m.
You either provide GUI equivalents for all the modifiers supported by the
RegExp engines or let advanced users add modifiers inside the pattern
itself.
So yes, DW always does a multi-line search, but I want a way to turn it into
"single-line mode", where "dot" matches new lines too. See below (please
note it's very easy to mix up the terms):
[url]http://www.regular-expressions.info/dot.html[/url]
Massimo
Massimo Foti Guest
-
meshgraphics #8
Re: RegExp multiline
Attn: Tourists
This newsgroup is for people who have actually written a DW extension, not
feature requests for newbies.
The DW extension environment is a subset of DOM level 1 and Microsoft Internet
Explorer 4.0 DOM. This is far surpassed by modern web browser so testing your
js in a web page doesn't help you with the finer points.
[url]http://livedocs.adobe.com/en_US/Dreamweaver/9.0_Extending/index.html[/url]
The RexExp features listed at regularexpression.com do not matter when you are
trying to troubleshoot your DW extension. What matters is: what actually works
in the DW extension environment.
The purpose of the original questions and code snippet was to grab the top
portion of a file, up to the marker, in its original format, so that it could
be written as is, to the output file. According to old js, something like this
would work:
Slurp = /(^.*)MARKER(.*?)/m.exec(MultilineInputString);
write(Slurp[1]); // <html><head><body>
write(Slurp[2]); // </body></html>
If you can make this work in a DW extension, let me know. Otherwise, enjoy
the Brittney Spears news.
Jon Wojkowski
meshgraphics.com
meshgraphics Guest
-
danilocelic AdobeCommunityExpert #9
Re: RegExp multiline
meshgraphics wrote:
Massimo has written quite a few extensions, and Randy is one of the engineers that works on Dreamweaver, so it might be worth backing off a bit with the attitude if you intend to get help from folks.> Attn: Tourists
>
> This newsgroup is for people who have actually written a DW extension, not
> feature requests for newbies.
They do to a certain extent, as they refer to the use of regular expressions within JavaScript, which Dreamweaver does use in extensions. Note this page:> The RexExp features listed at regularexpression.com do not matter when you are
> trying to troubleshoot your DW extension. What matters is: what actually works
> in the DW extension environment.
[url]http://www.regular-expressions.info/javascript.html[/url]
It states:
/m enables "multi-line mode". In this mode, the caret and dollar match before and after newlines in the subject string.
It also states:
Notably absent is an option to make the dot match line break characters.
Based upon both of these statement, the RegExp you present below does not do what you want it to do in JavaScript, regardless of Dreamweaver's involvement or not. The m flag does not allow the . character to match new lines in JavaScript and so you won't get from the beginning of the input string, rather you'll get from the beginning of the line that MARKER happens to be on.
What "old js" are you referring to that says that this should work the way you are saying it should?> The purpose of the original questions and code snippet was to grab the top
> portion of a file, up to the marker, in its original format, so that it could
> be written as is, to the output file. According to old js, something like this
> would work:
>
> Slurp = /(^.*)MARKER(.*?)/m.exec(MultilineInputString);
> write(Slurp[1]); // <html><head><body>
> write(Slurp[2]); // </body></html>
For this code:
<html>
<head>
<title>My Document</title>
</head>
<body>
MARKER
</body>
</html>
This RegExp grabs the content from the beginning of the code before MARKER, and also the content after MARKER through the end of the code:
/^((?:.|\r|\n)*)MARKER((?:.|\r|\n)*)$/
--
Danilo Celic
| Extending Knowledge Daily : [url]http://CommunityMX.com/[/url]
| Adobe Community Expert
danilocelic AdobeCommunityExpert Guest
-
Randy Edmunds #10
Re: RegExp multiline
> So yes, DW always does a multi-line search, but I want a way to turn it into
Ah. As you know, DW uses the Netscape JavaScript engine. We have the> "single-line mode", where "dot" matches new lines too.
JavaScript source code and have made tweaks in the past, but they end up
being a maintenance nightmare in the long run, so hopefully this will
get fixed in JavaScript.
Yes, a slightly easier and more clear technique to match everything in> See below (please note it's very easy to mix up the terms):
> [url]http://www.regular-expressions.info/dot.html[/url]
JavaScript regular expressions is to use 2 opposing terms such as
[\s\S]. This matches all characters which are either whitespace or not
whitespace.
Thanks,
Randy Edmunds
Dreamweaver Engineering
Adobe Systems, Inc.
Randy Edmunds Guest
-
danilocelic AdobeCommunityExpert #11
Re: RegExp multiline
danilocelic AdobeCommunityExpert wrote:
And based on Randy's latest post this Regular Expression also works:> This RegExp grabs the content from the beginning of the code before
> MARKER, and also the content after MARKER through the end of the code:
> /^((?:.|\r|\n)*)MARKER((?:.|\r|\n)*)$/
/^([\s\S]*)MARKER([\s\S]*)$/
Goes to show there are many ways to handle doing regular expressions, and you can always learn a new way to do the same thing.
--
Danilo Celic
| Extending Knowledge Daily : [url]http://CommunityMX.com/[/url]
| Adobe Community Expert
danilocelic AdobeCommunityExpert Guest
-
meshgraphics #12
Re: RegExp multiline
Thanks to Randy and Danilo for their attention to this topic.
I've used this regexp with success
<snip>
tempfile = (/^((?:.|\r|\n)*)OrdinarySiteMap(.*)
OrdinarySiteMap((?:.|\r|\n)*)$/.exec(ExistOSMfile));
if (! DWfile.write(localSiteURL+ "temp.html", tempfile[1]+
"xxxxxxxxxxxxxxxxxxmiddlexxxxxxxxxxxx" +tempfile[3] )){
alert("Write Failed: " + localSiteURL + "temp.html");
}
</snip>
The (?:) extension is not in Javascript 1.3 (c)1999 from the former
devedge.netscape.com which is archived in one form or another at
[url]http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Guide:Creating_a_Regula[/url]
r_Expression
[url]http://perldoc.perl.org/perlre.html[/url] (which is pretty old) says things like:
...
This is for clustering, not capturing; it groups subexpressions like "()", but
doesn't make backreferences as "()" does. So...
The stability of these extensions varies widely...
...
I've never checked out Microsoft perversion on it but there is something here:
[url]http://msdn2.microsoft.com/en-us/library/yab2dx62.aspx[/url]
Peace out,
Jonny
meshgraphics Guest



Reply With Quote

