0
Pulling Text Out of String
LEGEND
,
/t5/dreamweaver-discussions/pulling-text-out-of-string/td-p/804361
Apr 21, 2006
Apr 21, 2006
Copy link to clipboard
Copied
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
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
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

/t5/dreamweaver-discussions/pulling-text-out-of-string/m-p/804362#M152883
Apr 21, 2006
Apr 21, 2006
Copy link to clipboard
Copied
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
if u wanna know more just search the help for String Functions and read how to use them ...
Good Luck
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Newsgroup_User
AUTHOR
LEGEND
,
/t5/dreamweaver-discussions/pulling-text-out-of-string/m-p/804363#M152884
Apr 21, 2006
Apr 21, 2006
Copy link to clipboard
Copied
.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
>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
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Newsgroup_User
AUTHOR
LEGEND
,
LATEST
/t5/dreamweaver-discussions/pulling-text-out-of-string/m-p/804364#M152885
Apr 21, 2006
Apr 21, 2006
Copy link to clipboard
Copied
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
"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
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

