User Glomek - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T11:53:11Zhttp://stackoverflow.com/feeds/user/5922http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1533811/how-can-i-format-bytes-a-cell-in-excel-as-kb-mb-gb-etc/1533918#15339181Answer by Glomek for How can I format bytes a cell in Excel as KB, MB, GB etc?Glomek2009-10-07T20:16:00Z2009-10-08T00:35:08Z<p>I don't know of a way to make it show you binary gigabytes (multiples of 1024*1024*1024) but you can make it show you decimal gigabytes using a format like:</p>
<pre><code>0.00,,,"Gb"
</code></pre>
http://stackoverflow.com/questions/236629/what-other-languages-have-features-and-or-libraries-similar-to-perls-format4What other languages have features and/or libraries similar to Perl's format?Glomek2008-10-25T16:15:52Z2009-10-04T15:07:47Z
<p>I may be in the minority here, but I very much enjoy <a href="http://www.perl.com/doc/manual/html/pod/perlform.html" rel="nofollow">Perl's formats</a>. I especially like being able to wrap a long piece of text within a column ("~~ ^<<<<<<<<<<<<<<<<" type stuff). Are there any other programming languages that have similar features, or libraries that implement similar features? I am especially interested in any libraries that implement something similar for Ruby, but I'm also curious about any other options.</p>
http://stackoverflow.com/questions/1485393/outsourcing-and-software-engineering/1485407#1485407-1Answer by Glomek for Outsourcing and Software EngineeringGlomek2009-09-28T04:25:50Z2009-09-28T04:25:50Z<p>You should only become a programmer if you love it so much that you can't imagine being anything else. Programmers are not generally respected as professionals and are often made to report to non-programmers.</p>
<p>For a longer discussion, see <a href="http://www.halfsigma.com/2007/03/why%5Fa%5Fcareer%5Fin.html" rel="nofollow">Why a career in computer programming sucks</a></p>
http://stackoverflow.com/questions/603340/what-do-you-keep-in-your-perl-toolbox/603489#6034893Answer by Glomek for What do you keep in your Perl toolbox?Glomek2009-03-02T18:45:54Z2009-07-21T20:59:28Z<p>My most common modules are probably</p>
<ul>
<li><a href="http://search.cpan.org/perldoc?CGI" rel="nofollow">CGI</a></li>
<li><a href="http://search.cpan.org/perldoc?GetOpt::LongHTML::Template" rel="nofollow">HTML::Template</a></li>
<li><a href="http://search.cpan.org/perldoc?DBI" rel="nofollow">DBI</a></li>
<li><a href="http://search.cpan.org/perldoc?XML::Simple" rel="nofollow">XML::Simple</a></li>
<li><a href="http://search.cpan.org/perldoc?LWP" rel="nofollow">LWP</a></li>
<li><a href="http://search.cpan.org/perldoc?POSIX" rel="nofollow">POSIX</a></li>
<li><a href="http://search.cpan.org/perldoc?File::Find" rel="nofollow">File::Find</a></li>
</ul>
<p>I'm not sure if it counts as a "tool" or not, but I tend to write my programs in a mostly functional style. I try to only assign to each variable once, and I try to avoid subroutines that modify their arguments. I generally prefer "<a href="http://perldoc.perl.org/functions/grep.html" rel="nofollow"><code>grep</code></a>" or "<a href="http://perldoc.perl.org/functions/map.html" rel="nofollow"><code>map</code></a>" over a loop. The biggest exception to this rule is when I am building up a return value. I may push things onto the end of an array or add items to a hash in a loop.</p>
http://stackoverflow.com/questions/893218/rewrite-for-all-urls/893249#8932490Answer by Glomek for Rewrite for all URLs Glomek2009-05-21T14:35:04Z2009-05-21T14:46:09Z<p>Yes. The trick is to write a <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Frewrite.html#rewriterule" rel="nofollow">RewriteRule</a> that replaces one character (equals sign or ampersand) with a slash, and then use the "next" flag which restarts the rewrite process.</p>
<p>The following might be a good place to start:</p>
<pre><code>RewriteRule ^/index.php - [chain]
RewriteRule ^(.*)[=&](.*)$ $1/$2 [next]
RewriteRule ^/index.php\? "/"
</code></pre>
<p>If I got this right, the first rule will do nothing, but only match if the path starts with "/index.php". The "chain" option means that the second rule won't run unless the first rule matches. The second rule will try to replace an = or & with a /, and if it succeeds, it will restart the entire rewriting process. The third rule, which will only be reached after all of the = and & have been replaced, will remove the "/index.php?" at the beginning.</p>
http://stackoverflow.com/questions/6512/how-to-implement-continuations/880282#8802821Answer by Glomek for How to implement continuations?Glomek2009-05-18T23:28:26Z2009-05-18T23:28:26Z<p>Ward's Wiki has <a href="http://c2.com/cgi/wiki?ContinuationImplementation" rel="nofollow">a page devoted to this</a>.</p>
http://stackoverflow.com/questions/880230/difference-between-a-user-and-a-schema-in-oracle/880261#8802613Answer by Glomek for difference between a User and a Schema in Oracle? Glomek2009-05-18T23:23:59Z2009-05-18T23:23:59Z<p>Think of a user as you normally do (username/password with access to log in and access some objects in the system) and a schema as the database version of a user's home directory. User "foo" generally creates things under schema "foo" for example, if user "foo" creates or refers to table "bar" then Oracle will assume that the user means "foo.bar".</p>
http://stackoverflow.com/questions/732223/accessing-user-password-variable-scope-in-rails/732245#7322450Answer by Glomek for Accessing User Password: Variable Scope in RailsGlomek2009-04-08T23:14:26Z2009-04-08T23:14:26Z<p>I'm guessing that the password is stored in a hashed form, deliberately so that you <em>can't</em> know the user's password. What you need to do when a user forgets a password is to send the user a link, only valid for a few days, that will let the user reset the password without knowing the old one.</p>
http://stackoverflow.com/questions/719135/whats-the-bright-side-of-cobol/719241#7192413Answer by Glomek for What's the bright side of Cobol?Glomek2009-04-05T16:24:24Z2009-04-05T16:24:24Z<p>The data structuring features are about as good as it gets for fixed length fields.</p>
<p>ALTER is downright mind bending. Maybe not good for use in production code, but fun to play with. Basically, it lets you change what statements follow what other statements (insert GOTOs) at runtime.</p>
http://stackoverflow.com/questions/714494/how-can-i-rearrange-my-data-to-be-x-y-coordinates-for-gdgraph/714951#7149511Answer by Glomek for How can I rearrange my data to be (x,y) coordinates for GD::Graph?Glomek2009-04-03T17:47:30Z2009-04-03T17:47:30Z<p>You can grow your x and y arrays as you go.</p>
<pre><code>#!/usr/bin/perl
use Data::Dumper;
use warnings;
use strict;
my @xs = ();
my @ys = ();
my $expecting_xs = 1;
my $last_xs_count;
while(<>) {
chomp;
my @values = split(/\s+/);
if($expecting_xs) {
push(@xs, @values);
$last_xs_count = @values;
$expecting_xs = 0;
} else {
if(@values != $last_xs_count) {
die "Count mismatch";
}
push(@ys, @values);
$expecting_xs = 1;
}
}
if(!$expecting_xs) {
die("Odd number of lines");
}
my($xmin, $xmax) = extremes(@xs);
my($ymin, $ymax) = extremes(@ys);
print "xmin: $xmin xmax: $xmax ymin: $ymin ymax: $ymax\n";
print Dumper(\@xs), Dumper(\@ys);
sub extremes {
my(@values) = @_;
return undef unless @values;
my $min = shift(@values);
my $max = $min;
for my $value (@values) {
$max = $value if $value > $max;
$min = $value if $value < $min;
}
return $min, $max;
}
</code></pre>
http://stackoverflow.com/questions/714813/how-can-i-remove-all-tokens-with-non-word-characters-in-perl/714916#7149163Answer by Glomek for How can I remove all tokens with non-word characters in Perl?Glomek2009-04-03T17:34:59Z2009-04-03T17:34:59Z<pre><code>$wordline = join(" ", grep(/^\w+$/, split(/\s+/, $wordline)));
</code></pre>
http://stackoverflow.com/questions/714879/how-do-i-print-outputs-from-calls-to-subprocess-popen-in-a-loop/714902#7149021Answer by Glomek for How do I print outputs from calls to subprocess.Popen(...) in a loop?Glomek2009-04-03T17:29:50Z2009-04-03T17:29:50Z<p>Try calling sys.stdout.flush() after each print statement.</p>
http://stackoverflow.com/questions/711140/why-isnt-smalltalk-popular/712162#7121624Answer by Glomek for Why isn't Smalltalk popular?Glomek2009-04-03T00:39:46Z2009-04-03T14:56:19Z<p><a href="http://glomek.blogspot.com/2007/12/great-programming-industry-reboot.html" rel="nofollow">The Great Programming Industry Reboot</a> sort of answers this. Short version: The first microcomputers couldn't run Smalltalk, and the number of programmers was growing faster than the new ones could be educated by the old ones. The programming culture basically started over in the early 1980s on microcomputers, and then the microcomputer programmers had to spend the next 30 years going through the growing pains that the mainframe/minicomputer programmers had already gone through.</p>
http://stackoverflow.com/questions/699545/displaying-data-as-flowchart-in-web-app/699592#6995921Answer by Glomek for Displaying data as flowchart in web appGlomek2009-03-31T00:34:47Z2009-03-31T00:34:47Z<p>You may find <a href="http://www.graphviz.org/" rel="nofollow">Graphviz</a> useful. You can generate a text description of a graph, and it will lay it out nicely for you.</p>
http://stackoverflow.com/questions/260472/compiler-optimizations-where-how-can-i-get-a-feel-for-what-the-payoff-is-for-dif3Compiler optimizations: Where/how can I get a feel for what the payoff is for different optimizations?Glomek2008-11-04T00:44:04Z2009-03-19T02:29:28Z
<p>In my independent study of various compiler books and web sites, I am learning about many different ways that a compiler can optimize the code that is being compiled, but I am having trouble figuring out how much of a benefit each optimization will tend to give.</p>
<p>How do most compiler writers go about deciding which optimizations to implement first? Or which optimizations are worth the effort or not worth the effort? I realize that this will vary between types of code and even individual programs, but I'm hoping that there is enough similarity between most programs to say, for instance, that one given technique will usually give you a better performance gain than another technique.</p>
http://stackoverflow.com/questions/612439/sort-uniq-xargs-grep-where-lines-contain-spaces/612596#6125960Answer by Glomek for sort | uniq | xargs grep ... where lines contain spacesGlomek2009-03-04T21:46:20Z2009-03-06T18:10:13Z<p>You can tell xargs to use each line as an argument in its entirety using the -d option. Try:</p>
<pre><code>cut -d, -f 5 myfile.csv | sort | uniq -d | xargs -d '\n' -I '{}' grep '{}' myfile.csv
</code></pre>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/163440#16344016Answer by Glomek for Hidden features of Perl?Glomek2008-10-02T17:00:49Z2009-02-23T06:53:31Z<p>Taint checking. With taint checking enabled, perl will die (or warn, with <code>-t</code>) if you try to pass tainted data (roughly speaking, data from outside the program) to an unsafe function (opening a file, running an external command, etc.). It is very helpful when writing setuid scripts or CGIs or anything where the script has greater privileges than the person feeding it data.</p>
<p>Magic goto. "goto &sub" does an optimized tail call.</p>
<p>The debugger.</p>
<p>"use strict" and "use warnings". These can save you from a bunch of typos.</p>
http://stackoverflow.com/questions/514038/elegant-ways-to-return-multiple-values-from-a-function/514133#5141331Answer by Glomek for Elegant ways to return multiple values from a functionGlomek2009-02-05T01:09:13Z2009-02-05T01:09:13Z<p>Nobody seems to have mentioned Perl yet.</p>
<pre><code>sub myfunc {
return 1, 2;
}
my($val1, $val2) = myfunc();
</code></pre>
http://stackoverflow.com/questions/514033/antfarm-anti-pattern-strategies-to-avoid-antidotes-to-help-heal-from/514119#5141196Answer by Glomek for AntFarm anti-pattern -- strategies to avoid, antidotes to help heal fromGlomek2009-02-05T01:06:39Z2009-02-05T01:06:39Z<p>I think that Parnas pretty much nailed it in <a href="http://www.cs.drexel.edu/~yfcai/CS451/papers/parnas.12.72.pdf" rel="nofollow">On the Criteria to be used in Decomposing Systems into Modules</a>. Each module should hide a design decision, one that may change in the future. In general, a module with nothing to hide is usually just overhead. He wasn't talking about classes exactly, but I think the reasoning still applies.</p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164446#164446523Answer by Glomek for What real life bad habits has programming given you?Glomek2008-10-02T20:33:34Z2009-01-29T17:57:28Z<p>I tend to take things hyper-literally. For example, my wife was annoyed when she used to ask "Do you want to take out the garbage?" (no) instead of "Will you take out the garbage?" (yes).</p>
<p>Whether this is a result of programming, or just an innate trait that helps in programming, I cannot say.</p>
http://stackoverflow.com/questions/462609/detecting-single-one-bit-streams-within-an-integer/462634#4626342Answer by Glomek for Detecting single one-bit streams within an integerGlomek2009-01-20T19:06:56Z2009-01-20T19:15:45Z<p>This should do what you want.</p>
<pre><code>if(i == 0)
return false;
while(i % 2 == 0) {
i = i / 2;
}
return (i & (i + 1)) == 0;
</code></pre>
http://stackoverflow.com/questions/455525/is-the-switch-to-dvorak-worth-it/455816#4558161Answer by Glomek for Is the switch to Dvorak worth it?Glomek2009-01-18T20:16:25Z2009-01-18T20:16:25Z<p>I think it's worth it if you primarily type prose and if you can get away with using your own computer almost all the time. Not if you primarily code or if you need to use other computers frequently. I started with Dvorak, and switched to Qwerty because languages, keyboard shortcuts, editor commands, etc. are all optimized for a Qwerty keyboard. Also, it's a pain feeling like a fish out of water whenever you're using someone else's computer.</p>
http://stackoverflow.com/questions/449172/what-is-the-point-of-this-line-of-code/449181#4491812Answer by Glomek for What is the point of this line of code?Glomek2009-01-16T01:18:46Z2009-01-16T01:18:46Z<p>I'm guessing that it's a funky way of forcing $text_including_tax to be a string and not a number.</p>
http://stackoverflow.com/questions/444673/sql-use-results-of-a-query-as-basis-for-two-other-queries-in-one-statement/444704#4447041Answer by Glomek for SQL - Use results of a query as basis for two other queries in one statementGlomek2009-01-14T21:11:29Z2009-01-14T21:18:56Z<pre><code>SELECT COUNT(*) as totaloccurs, COUNT(@conditions@) as suboccurs
FROM (@total@ as t1)
</code></pre>
http://stackoverflow.com/questions/444663/what-would-cause-perl-to-dump-core/444674#4446744Answer by Glomek for What would cause Perl to dump core?Glomek2009-01-14T21:06:03Z2009-01-14T21:06:03Z<p>You're tickling a bug in the Perl interpreter or one of its C modules. If your Perl binary doesn't have debugging symbols, compile a version that does and make a core dump. Load the core dump into gdb and do a back trace. Find the bug, see if it's in the latest version, and if it isn't, then submit a patch that fixes it.</p>
http://stackoverflow.com/questions/444606/convincing-a-large-company-to-use-free-software/444634#44463410Answer by Glomek for Convincing a large company to use free software?Glomek2009-01-14T20:57:24Z2009-01-14T20:57:24Z<p>Pick your battles carefully. Wait until they are suffering. If they are happy with what they have, they will not switch, no matter how much cheaper or superior the alternative is. You need to catch them while they're trying to think of ways to save money, or while they're disgusted with the problems of the current system.</p>
http://stackoverflow.com/questions/444251/how-to-store-a-list-in-a-db-column/444276#4442760Answer by Glomek for How to store a list in a db columnGlomek2009-01-14T19:10:56Z2009-01-14T19:10:56Z<p>Some databases allow multiple values to be stored in a single column of a single row, but it is generally more convenient to use a separate table.</p>
<p>Create a table with two columns, one that contains pointers to the primary key of the objects table, and one that contains pointers to the primary key of the fruit table. Then, if an object has three fruit, there are three rows in the object_fruit table that all all point to the same object, but to three different fruit.</p>
http://stackoverflow.com/questions/444170/object-oriented-questions-in-javascript/444195#44419510Answer by Glomek for Object Oriented questions in JavascriptGlomek2009-01-14T18:48:27Z2009-01-14T19:00:58Z<p>Every time a function() {} is evaluated, it creates a new function object. Therefore, in #1 all of the User objects are sharing the same getName and getAge functions, but in #2 and #3, each object has its own copy of getName and getAge. All of the different getName functions all behave exactly the same, so you can't see any difference in the output.</p>
<p>The {...} shorthand <em>is</em> a constructor. When evaluated, it constructs a new "Object" with the given properties. When you run "new User(...)", it constructs a new "User". You happen to have created an Object with the same behavior as a User, but they are of different types.</p>
<p>Response to comment:</p>
<p>You can't, directly. You could make a function that creates a new object as per #3. For example:</p>
<pre><code>function make_user(name, age) {
return {
name: name,
age: age,
getName: function() { return name; },
getAge: function() { return age; },
};
}
var user = make_user("Joe", "18");
</code></pre>
http://stackoverflow.com/questions/444152/regex-to-extract-update-columns-from-a-sql-statement/444168#4441683Answer by Glomek for Regex to Extract Update Columns from a Sql StatementGlomek2009-01-14T18:39:09Z2009-01-14T18:55:03Z<p>You're doing it backwards. Store the data in a broken out form, with the table to be updated, the column names, and the expressions to generate the new values all separate. From this canonical representation, generate both the SQL (when you need it) and the list of columns being updated (when you need that instead).</p>
<p>If you absolutely must pull the column names out of a SQL statement, I don't think that regular expressions are the correct way to go. For example, in the general case you may need to skip over new value expressions that contain arbitrarily nested parenthesis. You will probably want a full SQL parser. The book <em>Lex & Yacc</em> by Levine, Mason, and Brown has a chapter on parsing SQL.</p>
<p>Response to update:
You are in for a world of hurt. The only way to do what you want is to fully parse the SQL, because you also need to make sure that you don't have any subexpressions that perform unauthorized actions.</p>
<p>I very, very strongly recommend that you come up with another way to do whatever it is that you are doing. Maybe break out the modifiable fields into a separate table and use access controls? Maybe come up with another interface for them to use in specifying what they want done? Whatever it is that you're doing, there is almost certainly a better way to do it. Down that path there be dragons.</p>
http://stackoverflow.com/questions/441309/why-are-mutable-structs-evil/441362#4413623Answer by Glomek for Why are mutable structs evil?Glomek2009-01-13T23:45:53Z2009-01-13T23:45:53Z<p>There are many advantages and disadvantages to mutable data. The million-dollar disadvantage is aliasing. If the same value is being used in multiple places, and one of them changes it, then it will appear to have magically changed to the other places that are using it. This is related to, but not identical with, race conditions.</p>
<p>The million-dollar advantage is modularity, sometimes. Mutable state can allow you to hide changing information from code that doesn't need to know about it.</p>
<p><a href="http://dspace.mit.edu/handle/1721.1/6094" rel="nofollow">The Art of the Interpreter</a> goes into these trade offs in some detail, and gives some examples.</p>
http://stackoverflow.com/questions/1485393/outsourcing-and-software-engineering/1485407#1485407Comment by Glomek on Outsourcing and Software EngineeringGlomek2009-09-30T17:56:18Z2009-09-30T17:56:18ZThe question was only incidentally about outsourcing. It was really about how hard it is to find a good job as a programmer, with outsourcing being an example of why it might be difficult. My point was that even when you find a job, it's still not all that good most of the time, unless you love programming so much that being able to program is its own reward for you.http://stackoverflow.com/questions/893218/rewrite-for-all-urls/893239#893239Comment by Glomek on Rewrite for all URLs Glomek2009-05-21T14:54:53Z2009-05-21T14:54:53ZThis does the reverse of what was requested. It turns "/a/b/c/d" into "/index.php?a=b&c=d". The question asked about turning "/index.php?a=b&c=d" into "/a/b/c/d".http://stackoverflow.com/questions/715113/master-slave-control-architecture-in-net-across-multiple-systemsComment by Glomek on Master-Slave control architecture in .net across multiple systems.Glomek2009-04-03T18:47:27Z2009-04-03T18:47:27ZCould you elaborate on what you are actually trying to accomplish? Why are you using serial instead of network communications? Will anyone be interactively using software on the slaves, or are they just a computer farm for the master? Why would the users not have access to the systems?http://stackoverflow.com/questions/462609/detecting-single-one-bit-streams-within-an-integer/462634#462634Comment by Glomek on Detecting single one-bit streams within an integerGlomek2009-01-20T19:16:49Z2009-01-20T19:16:49ZOops. It wouldn't have worked with anything. I meant bitwise and, not xor. And yes, it works for a number with every bit set. In that case, i+1 is zero, anded with anything is zero.http://stackoverflow.com/questions/444170/object-oriented-questions-in-javascript/444195#444195Comment by Glomek on Object Oriented questions in JavascriptGlomek2009-01-14T20:35:34Z2009-01-14T20:35:34ZThere is a way of using lexical scope to fake private variables. You probably shouldn't worry about this for now, but if you're curious, see <a href="http://www.crockford.com/javascript/private.html" rel="nofollow">crockford.com/javascript/private.html</a>http://stackoverflow.com/questions/444170/object-oriented-questions-in-javascript/444195#444195Comment by Glomek on Object Oriented questions in JavascriptGlomek2009-01-14T20:18:01Z2009-01-14T20:18:01ZMy point was they behave the same within the example.http://stackoverflow.com/questions/444152/regex-to-extract-update-columns-from-a-sql-statement/444168#444168Comment by Glomek on Regex to Extract Update Columns from a Sql StatementGlomek2009-01-14T19:21:24Z2009-01-14T19:21:24ZYou need to fully parse the SQL and walk the parse tree, verifying that every function and operator is allowed and that all row and column accesses are allowed. Is it possible that you could restrict this functionality to "administrative" users so that imperfect security would be acceptable?http://stackoverflow.com/questions/444152/regex-to-extract-update-columns-from-a-sql-statement/444168#444168Comment by Glomek on Regex to Extract Update Columns from a Sql StatementGlomek2009-01-14T18:55:52Z2009-01-14T18:55:52ZMy response was too long for a comment, so I put it in as an edit above.http://stackoverflow.com/questions/441071/ruby-style-question-blocks-or-inheritance/441097#441097Comment by Glomek on Ruby style question : blocks or inheritance ?Glomek2009-01-13T23:15:56Z2009-01-13T23:15:56ZSaving yourself time and code on boilerplate stuff is even more important in large projects.http://stackoverflow.com/questions/241691/sieve-of-eratosthenes-in-ruby/241752#241752Comment by Glomek on Sieve of Eratosthenes in RubyGlomek2009-01-12T14:40:45Z2009-01-12T14:40:45ZI was trying to come up with something as close to the original poster's code as possible, but which worked.http://stackoverflow.com/questions/431217/brace-placement-after-init-list-in-c/431238#431238Comment by Glomek on Brace placement after init list in C++Glomek2009-01-12T14:39:05Z2009-01-12T14:39:05ZYes, foo, bar, and baz are meant to be aligned. Fixed.http://stackoverflow.com/questions/428013/regex-replacing-58-to-etc/429887#429887Comment by Glomek on Regex Replacing : to ":" etcGlomek2009-01-10T00:26:37Z2009-01-10T00:26:37ZThis converts "&#38;#38;" into "&&" and not "&#38;" as it should. It also converts "&#65&#59;" to "A" and not "&#65;" as it should, and it doesn't work on codes at the end of the line unless &fullscan is turned on.http://stackoverflow.com/questions/428013/regex-replacing-58-to-etc/429204#429204Comment by Glomek on Regex Replacing : to ":" etcGlomek2009-01-09T21:39:30Z2009-01-09T21:39:30ZI put the change into your post. So far I have not found an input that breaks this version.http://stackoverflow.com/questions/428013/regex-replacing-58-to-etc/429204#429204Comment by Glomek on Regex Replacing : to ":" etcGlomek2009-01-09T18:56:31Z2009-01-09T18:56:31Z"& &#65;" => " A" instead of "& A"http://stackoverflow.com/questions/428013/regex-replacing-58-to-etc/428351#428351Comment by Glomek on Regex Replacing : to ":" etcGlomek2009-01-09T18:31:11Z2009-01-09T18:31:11ZThat doesn't change the input string at all.