Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

removing characters from string

Status
Not open for further replies.

UcfMike

IS-IT--Management
Mar 29, 2007
184
US
I want to remove the first two characters from a string, but I don't know what those characters are going to be, how would I do this in report studio?
 
Use substring function and start with position 3 in the string:

substring('ABCDE',3,10) yields 'CDE'

Ties Blom

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top