comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » Re: sorting the chars in a string
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: sorting the chars in a string [message #58631] Mon, 11 February 2008 08:23 Go to previous message
Spon is currently offline  Spon
Messages: 178
Registered: September 2007
Senior Member
elwood wrote:
> Excellent!
> Thank you!
> A minor variation on the below-
> what if I want to split a string into a string array in which each
> element is one character?
> I think I can figure out a lengthy way to do it if I first convert the
> string to byte.
> BUT
> strjoin will knit a string array back together, but is there a way to
> use strsplit to rip off each char,
> one by one and put them into a string array?
> Something like the following perhaps;
> x="abdcf"
> arrayofchars=strsplit(x,'.',/regex,/extract)
>
> -the above doesnt work, it returns an empty string :-(

new_string_array = string(transpose(tmp[sort_inds]))

>
> On Feb 11, 9:02 am, Lasse Clausen <la...@lbnc.de> wrote:
>> On 11 Feb, 15:39, elwood <epolo...@uwsp.edu> wrote:
>>
>>> I've been trying to think of a simple way to alphabetically sort an
>>> individual string
>>
>>> Say I have the string x="abdcf"
>>> Is there a way to sort it and return a new string which is in correct
>>> alphabetical order,
>>> and/or reverse alphabetical order.
>>
>>> Maybe its obvious, but I havent worked with strings too much in IDL
>>> and I cant seem to find
>>> a way to do this (strsplit and stregex somehow??)
>>
>>> Thanks,
>>> Elisha
>>
>> Hi there,
>>
>> convert the string to an array of bytes, like so
>>
>> test = 'sfbvvaedfvtrgvsdvrbnyhtfc'
>> tmp = byte(test)
>>
>> This conversion happens according to the ASCII table, if I am not
>> mistanken, which connects a number to a character in ascending order,
>> on my machine a = 97, b = 98 and so on. Then sort that byte array and
>> build up the string again.
>>
>> sort_inds = sort(tmp)
>> new_string = string(tmp[sort_inds])
>> print, new_string
>>
>> That works, use REVERSE() if you want the sorting done from z-a.
>>
>> Cheers
>> Lasse Clausen
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Previous Topic: sorting the chars in a string
Next Topic: the problem of making the example of externel calltest

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Fri Oct 10 15:29:24 PDT 2025

Total time taken to generate the page: 0.95995 seconds