I have the followig string: 'BOB*', how do I trim the * so it shows up as 'BOB' I tried the RTRIM('BOB*','*') but does not work as says needs only 1 paramter.
|
|
should do it. |
|||||
|
|
RRIM() LTRIM() only remove spaces try http://msdn.microsoft.com/en-us/library/ms186862.aspx Basically just replace the * with empty space REPLACE('TextWithCharacterToReplace','CharacterToReplace','CharacterToReplaceWith') So you want REPLACE ('BOB*','*','') |
|||
|
|
|
If you wanted behavior similar to how RTRIM handles spaces i.e. that "B*O*B**" would turn into "B*O*B" without losing the embedded ones then something like -
Should do it. |
|||
|
|
Another pretty good way to implement Oracle's
For example:
|
||||
|
|
|
If you only want to remove a single
To remove all trailing NOTE: Be careful with the REPLACE function, as that will replace all occurrences of the specified character within the string, not just the trailing ones. |
|||
|
|