Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the quickest way in ColdFusion (or Java) for converting a string as such:

Input:
79827349837493827498

Output:
\79\82\73\49\83\74\93\82\74\98

I'm taking an LDAP GUID and escaping it for a query.

I can do it as a series of MID reductions like this:

  <CFSET V1 = "">
  <CFSET RetVal = "">
  <CFLOOP CONDITION="#V1# NEQ''">
      <CFSET RetVal = RetVal & "\" & MID(V1,1,2)>
      <CFSET V1 = MID(V1,3,2000)>
  </CFLOOP>

But it seems like there would be something more elegant, like a regular expression replace.

share|improve this question

5 Answers

up vote 14 down vote accepted

I haven't tested this, so the syntax might be off, but you should be able to do something like:

<cfset V1 = REReplace(V1,"([0-9]{2})","\\\1","all")>
share|improve this answer
thanks. Exactly what I was looking for. I just realized my examples didn't have characters in it, but LDAP Guid does. So the Regex ought to be closer to (\w{2}). – Tom Hubbard Jun 22 '09 at 10:34

In Java you could do

String text = text.replaceAll("(..)","\\\1");
share|improve this answer
Which is exactly what you could do in ColdFusion as well. But I believe it is: .replaceAll("(..)","\\$1") - Java back references work with a dollar sign. – Tomalak Jun 22 '09 at 8:51

Here is another possible way.

<cfset input = "79827349837493827498"/>
<cfset output = input/>

<cfloop from="#len(output)-2#" to="0" index="i" step="-2">
    <cfset output = insert("\",output,i)/>
</cfloop>

<cfoutput>#output#</cfoutput>
share|improve this answer
cool, I thought insert() wouldn't work, but looping down works! nice! – Henry Jun 20 '09 at 0:52
oh... 'to' should be 1, right? – Henry Jun 20 '09 at 0:53
No, 'to' should be 0 because an insert() function position parameter of 0 prefixes the string. – Jayson Jun 20 '09 at 1:07

how about...

<cfset input = "79827349837493827490">
<cfset output = "">

<cfloop from="1" to="#len(input)#" index="count" step="2">
   <cfset output &= "\" & mid(input, count, 2)>
</cfloop>
share|improve this answer

I don't know ColdFusion, but here's a simple Java approach:

private String injectBackslashes(String string) {
    StringBuffer sb = new StringBuffer();
    for(int i = 0; i < string.length() / 2; ++i)
    	sb.append('\\').append(string.substring(2*i, 2*i+2));
    return sb.toString();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.