Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

string contains and special characters

47 views
Skip to first unread message

loial

unread,
Oct 9, 2012, 10:02:22 AM10/9/12
to
I am trying to match a string that containing the "<" and ">" characters, using the string contains function, but it never seems to find the lines containing the string

e.g if mystring.contains("<TAG>") :

Do I need to escape the characters...and if so how?

Agon Hajdari

unread,
Oct 9, 2012, 10:10:40 AM10/9/12
to pytho...@python.org
if '<TAG>' in yourstring:
# your code

--
Agon Hajdari

Dave Angel

unread,
Oct 9, 2012, 10:23:42 AM10/9/12
to loial, pytho...@python.org
What language are you trying to use, and what version of that language?
In all the Python versions I know of, that line would simply be a syntax
error. There's no "contains" method in the str class, use the 'in' keyword.

if "<TAG>' in mystring:

No need to escape any ASCII characters except backslash.

--

DaveA

Jerry Hill

unread,
Oct 9, 2012, 10:34:17 AM10/9/12
to pytho...@python.org
Strings don't have a contains() method. Assuming that mystring is
actually a string, you should be getting a very specific error,
telling you exactly what's wrong with your code (something like
AttributeError: 'str' object has no attribute 'contains').

If that isn't what you're seeing, you'll need to provide the full and
complete text of the error you are getting, and preferably enough of
your code that we can reproduce the issue and help you solve it.

--
Jerry

Dave Angel

unread,
Oct 9, 2012, 10:34:30 AM10/9/12
to d...@davea.name, pytho...@python.org, loial
On 10/09/2012 10:23 AM, Dave Angel wrote:
> On 10/09/2012 10:02 AM, loial wrote:
> What language are you trying to use, and what version of that language?
> In all the Python versions I know of, that line would simply be a syntax

Sorry, I should have said "Attribute" error.

Mark Lawrence

unread,
Oct 9, 2012, 10:50:26 AM10/9/12
to pytho...@python.org
On 09/10/2012 15:23, Dave Angel wrote:
> On 10/09/2012 10:02 AM, loial wrote:
> What language are you trying to use, and what version of that language?
> In all the Python versions I know of, that line would simply be a syntax
> error. There's no "contains" method in the str class, use the 'in' keyword.

I see you've already corrected youself :)

>
> if "<TAG>' in mystring:
>
> No need to escape any ASCII characters except backslash.
>

No need to escape anything if raw strings are used.

--
Cheers.

Mark Lawrence.

loial

unread,
Oct 9, 2012, 11:09:30 AM10/9/12
to pytho...@python.org
On Tuesday, 9 October 2012 15:19:33 UTC+1, Agon Hajdari wrote:
> On 10/09/2012 04:02 PM, loial wrote: > I am trying to match a string that containing the "<" and ">" characters, using the string contains function, but it never seems to find the lines containing the string > > e.g if mystring.contains("<TAG>") : > > Do I need to escape the characters...and if so how? > if '<TAG>' in yourstring: # your code -- Agon Hajdari

That worked...thanks

loial

unread,
Oct 9, 2012, 11:09:30 AM10/9/12
to comp.lan...@googlegroups.com, pytho...@python.org
On Tuesday, 9 October 2012 15:19:33 UTC+1, Agon Hajdari wrote:
> On 10/09/2012 04:02 PM, loial wrote: > I am trying to match a string that containing the "<" and ">" characters, using the string contains function, but it never seems to find the lines containing the string > > e.g if mystring.contains("<TAG>") : > > Do I need to escape the characters...and if so how? > if '<TAG>' in yourstring: # your code -- Agon Hajdari

That worked...thanks

Ulrich Eckhardt

unread,
Oct 9, 2012, 10:59:13 AM10/9/12
to
Am 09.10.2012 16:02, schrieb loial:
> I am trying to match a string that containing the "<" and ">"
> characters, using the string contains function, but it never seems to
> find the lines containing the string
>
> e.g if mystring.contains("<TAG>") :

I can't locate a 'contains' function anywhere, what type is 'mystring'?


> Do I need to escape the characters...and if so how?

Maybe. Please provide some example code that unexpectedly fails.


Uli
0 new messages