My prefered:
listLast(String, '_')
Also Works:
RemoveChars(String, 1, 2)
Main Topics
Browse All TopicsHi,
How can I delete the first two characters from this string.
c_2
c_25
c_20
I want to just be left with the numeric part of the string. Or everything to the right of the underscore
Any help appreciated.
-ws
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
If the string only contains one underscore then ListLast() is equivalent to ListRest(). If it contains multiple underscores like "c_20_85" the results would be:
listRest = 20_85
listLast = 85
String functions also work, but you they will throw an error if the string doesn't match that pattern for some reason. So you should add error handling.
Alternately you could simply use this:
newvalue=right(mystring,Le
Of course this assume that the prefix is alway present and always 2 characters. You might also want to provide some error handling like:
if (Len(mystring) GT 2) {
newvalue=right(mystring,Le
} else {
... Error handling here ...
}
Business Accounts
Answer for Membership
by: _agx_Posted on 2007-10-01 at 16:19:34ID: 19995045
One way is to use list functions
ue, "_")#</cfoutput>
<cfset theValue ="c_2">
<cfoutput>#listRest(theVal