Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Pulling Text Out of String

LEGEND ,
Apr 21, 2006 Apr 21, 2006
I need to pull some text out of a database string

the string returned is
0]Nx

Where "N" is an integer, single digit (i believe, but could be more).

Can somebody help me with direction on how to obtain everything between ]
and X?

--

Thank you,

Jon Parkhurst
PriivaWeb
PO Box 1114
Sedalia, MO 65302-1114
660.826.5600


TOPICS
Server side applications
239
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 21, 2006 Apr 21, 2006
use the string functions ... depend on what is ur database is .. but anyway u can use substring or mid ..
if u wanna know more just search the help for String Functions and read how to use them ...
Good Luck
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 21, 2006 Apr 21, 2006
.oO(Mohnd)

>use the string functions ... depend on what is ur database is .. but anyway u
>can use substring or mid ..

Or a regular expression:

0](\d+)x

Micha
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 21, 2006 Apr 21, 2006
LATEST
Thanks guys!

"Michael Fesser" <netizen@gmx.de> wrote in message
news:i9bi4211ijm33g9dmt8imo592at9jmvmhe@4ax.com...
> .oO(Mohnd)
>
>>use the string functions ... depend on what is ur database is .. but
>>anyway u
>>can use substring or mid ..
>
> Or a regular expression:
>
> 0](\d+)x
>
> Micha


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines