How to return partial string in ColdFusion - coldfusion

Lets say I have a string The big brown fox jumped<br> over the fence. How could I specify that I want to keep only the characters that are before the <br> tag, stripping out the rest?

I use something similar, don't know if it's more efficient.
<cfset string = "The big brown fox jumped<br> over the fence.">
<cfset firstPiece = listGetAt(string, 1, "<br>")>
<cfoutput>#firstPiece#</cfoutput>
I like it because I determine the output prior to output rather than on output. But orangepips is nice because you could tailor your output based on the context..
EDIT
As pointed out in the comments the above code indeed produces "The" because of the way CF treats each character as a delimiter.
But <cfset firstPiece = listGetAt(string, 1, "<") produces "The big brown fox jumped".
From the CF Documentation
Delimiters
A string or a variable that contains
one. Character(s) that separate list
elements. The default value is comma.
If this parameter contains more than
one character, ColdFusion processes
each occurrence of each character as a
delimiter.

If you don't mind dropping down to a bit of the old java underlying CF... AColdFusion string is actually a java string. Java's split uses a regex, which at it's simplest can just be the string you want to split on. So unlike listToArray (which was extended in cf9 to allow multi-character splits, by the way), it is by definition multi-character. And since it's a regex, if you want it case insensitive, that too can be easily accomplished.
So given your string:
<cfset variables.myString = "The big brown fox jumped<br> over the fence." />
<cfset variables.myStringArray = variables.myString.split("(<[bB][Rr]>)",2) />
<cfset variables.myString = variables.myStringArray[1] />
variables.myStringArray will contain an array with at most 2 elements, the part before the first <br>, and the part after the first <br> (the second parameter to split, the 2, says to only split into 2 parts, at the most) occurrence, which will leave any <br>'s in the second part of your string intact.

Everyone loves regex 'cept me. So here's an approach using string functions instead:
<cfset str = "The big brown fox jumped<br> over the fence.">
<!--- roughly the equivalent of str.split("<br>") --->
<cfset pieces = listToArray(str, "<br>")>
<cfoutput>#pieces[1]#</cfoutput>
Update
Meh, don't have a CF server handy. Stupid listToArray(). Here's one that should work.
<cfset str = "The big brown fox jumped<br> over the fence.">
<cfset pos = find(str, "<br>")>
<!--- probably off by one here, don't have CF server handy --->
<cfset piece = left(str, pos)>
Update #2
Have access to a CF server now. This works. Addresses all the comments:
<cfset str = "The big brown fox jumped<br> over the fence.">
<cfset pos = findNoCase("<br>", str)>
<cfset piece = (pos ? left(str, pos - 1) : str)>
<cfoutput>#piece#</cfoutput>

Using Regexs:
<cfset str = "The big brown fox jumped<br> over the fence." />
<cfset firstPart = REReplaceNoCase( str, "<br>.*$", "") />
<cfoutput>#firstPart#</cfoutput>

http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-7a49.html

Why not use the listFirst function as in:
<cfset str = "The big brown fox jumped<br> over the fence." />
<cfset firstPart = listfirst(str, "<br>") />
<cfoutput>#firstPart#</cfoutput>

Related

Using a regex to extract a substring

I have the following string:
<cfset foo="Students: Am Goron, rika Mrks, Apl Rirez, Ktsana Tanam Course Location: Training Center - Hillsboro, OR - Hillsboro OR 97124 Course Date/Time: February 03, 2017">
I want to use a regex to extract only the list of students which is:
Am Goron, rika Mrks, Apl Rirez, Ktsana Tanam
If I use replace, I have to use many replace to make it happen. I think it would work with one regex, but I am not good with regular expressions. Can anybody help and guide?
Please pay no attention to the insult someone made in the comments. That's not what SO is for.
Anywho, there are a number of ColdFusion string functions that make your job easier. Here's what I did. This is assuming certain parts of your string will always be the same.
May not be super efficient, but it will help detail step by step what we're doing, and gives you precise control.
<cfset StringVar = "Students: Am Goron, rika Mrks, Apl Rirez, Ktsana Tanam Course Location: Training Center - Hillsboro, OR - Hillsboro OR 97124 Course Date/Time: February 03, 2017">
<!---Set total length of string --->
<cfset LengthIndent = len(StringVar)>
<!---Trim off the Students: part--->
<cfset StringVar = Right(StringVar,LengthIndent-9)>
<!---Trim up to the Course Location: part--->
<cfset StringVar = SpanExcluding(StringVar, ":")>
<!---Set total length of REMAINING string --->
<cfset LengthIndent = len(StringVar)>
<!---Trim off the Course Location: part--->
<cfset StringVar = LEFT(StringVar,LengthIndent-15)>
<!---Outputting this will give you ONLY names of students--->
<cfoutput>#StringVar#</cfoutput>
Regex's are not my strong suit either, but there are online tutorials and test sites like RegExrv2.1 you can use for practicing. With a bit of reading I came up with this:
<cfset list = reReplaceNoCase(text, "^Students:(.*?)Course Location:.*$", "\1", "all")>
Breaking it down, it searches for a string that:
^Students: - starts with "Students:"
(.+?) - followed by one or more characters as a capturing group
Course Location: - followed by the course location
.*$ - ending with zero or more characters
Then use a backreference, i.e. \1 to replace everything except the matched group, ie the student list.
If you prefer non-regex options, you could also cheat (a little) and insert an extra colon, ie : before course location. That would allow you to treat the string as a list delimited by colons, and extract the second element with list functions:
<cfset list = listGetAt( replace(text, "Course Location:", ":Course Location:"), 2, ":")>

How to remove words or chars from a string using coldfusion

I am new to coldfusion and my goal is to remove part of a string according to certain words.
For example:
<cfset myVar = "One of the myths associated with the Great Wall of China is that it is the only man-made structure"/>ยจ
How can I remove the words "One of the myths associated with the" in order to
have
Great Wall of China is that it is the only man-made structure as string?
I used following function
RemoveChars(string, start, count)
But I need to create a function maybe with RegEx or native coldfusion functions.
I see this question already has an accepted answer, but I thought I'd add another answer :)
You can do it by finding where the word 'Great' is in the string. With modern CFML you can do it like so:
<cfscript>
myVar = "One of the myths associated with the Great Wall of China is that it is the only man-made structure";
// where is the word 'Great'?
a = myVar.FindNoCase("Great");
substring = myVar.removeChars(1, a-1);
writeDump(substring);
</cfscript>
Using mid would give you a bit more flexibility if you want to cut chars off both ends.
<cfscript>
myVar = "One of the myths associated with the Great Wall of China is that it is the only man-made structure";
// where is the word 'Great'?
a = myVar.FindNoCase("Great");
// get the substring
substring = myVar.mid(a, myVar.len());
writeDump(substring);
</cfscript>
In older versions of CF that would be written as:
<cfscript>
myVar = "One of the myths associated with the Great Wall of China is that it is the only man-made structure";
// where is the word 'Great'
a = FindNoCase("Great", myVar);
// get the substring
substring = mid(myVar, a, len(myVar));
writeDump(substring);
</cfscript>
You could also use a Regular Expression to achieve the same result, you'll have to decide which is more appropriate in your use case:
<cfscript>
myVar = "One of the myths associated with the Great Wall of China is that it is the only man-made structure";
// strip all chars before 'Great'
substring = myVar.reReplaceNoCase(".+(Great)", "\1");
writeDump(substring);
</cfscript>
You could see the sentence as a list seperated by spaces. So if you want to cut off your sentence to start with "Great Wall of China", you could try
<cfloop list="#myVar#" index="word" delimiters=" ">
<cfif word neq "Great">
<cfset myVar = listRest(#myVar#," ")>
<cfelse>
<cfbreak>
</cfif>
</cfloop>
<cfoutput>#myVar#</cfoutput>
There may be a quicker way to do this. Here's a function at cfLib.org that can alter a list in a similar way: LINK.

how to find white space between the string in coldfusion

I need to find the white space between a string in ColdFusion
for example
str="ha ppy"
Whitespace=4
i need to calculate how many white space between the str.
how to do that.
A simple regex:
<cfset str="ha ppy">
<cfset spaces = reReplace(str, "\S+(\s+)\S+", "\1")>
<cfoutput>
<pre>spaces = [#spaces#]</pre><br>
#len(spaces)#
</cfoutput>

Getting string between two characters - Coldfusion

I'm struggling a bit with ColdFusion (not the language I ever write in).
I am trying to do a regex to get a part of a string.
So for example, if my string is: D_CECILA23_CEC23423
I want the part that is between the 2 underscores.
This is the code I have so far, and it works for anything that is alpha characters, but when a number is thrown into the mix, it just breaks.
<cfset myStr = "D_CELCI_LISA">
<cfset myStr2 = reReplace(myStr, "([\w\d\%]+)(\_)([/ A-Z]+)(\_)([\w\d\?]+)", "\3", "all") >
<cfoutput>
myStr: #myStr#<br />
myStr2: #myStr2#<br />
</cfoutput>
Which gives me:
myStr: D_CELCI_LISA
myStr2: CELCI
If it really is as simple as getting the text between the first and second underscore character, you don't need a regex. This'll do it:
myStr2 = listGetAt(myStr, 2, "_");
That said, this should do for the regex in that context: ^.*_([^_]+)_.*$, eg:
myStr2 = reReplace(myStr, "^.*_([^_]+)_.*$", "\1", "all");
#user2429578 ListLast() and ListFirst() for the last or first element of a list.

Regex to find length in description

<cfset RegexToFindLength = "Length:.*?(\d*\.?\d+)\s*(""|")"/>
<cfset Description = "blah blah blah 2.5"""/>
<cfset size = #reMatch(RegexToFindLength, Description)# />
<cfdump var="#size#">
Error Message: ColdFusion was looking at the following text:
)
looking to extract Length: 2.5" from the products description.
I have tested the above regex expression in regexpal and it works. But when i try using it in a cfm page, i get errors.
Can someone explain to me how this would be setup in CF?
You have a few issues here.
1) You don't escape your double quotes, so you end up closing your regex string and confusing it.
Personally, when I have to use double quotes in a string, I tend to use single quotes to define the string if I can.
<cfset RegexToFindLength = 'Length:.*?(\d*\.?\d+)\s*(""|")'/>
2) Your Description variable doesn't have the string you're searching for, so there will be no match. I changed this to the following to make it work (note the single quotes for defining the string):
<cfset Description = 'Length:.:2.5""'/>
3) (maybe not an issue) Size is not being set to a number. rematch returns an array of strings. You'll want to check the length of the string inside the array positions or check the length of the array itself - I don't know what exactly it is that you want to do.