wildcards

Search Wildcard('<', '>'), count it and get the position in java

Hi, I want to search Wildcard('<', '>') in a string, count them and get their positions in java. My string is like below Peter <5554>, John <5556>, which function should I use? Thank you. ...

How to use wildcards in drupal

I have a website where drupal manage the contents, but another application handle the e-commerce (my customer doesnt like to change his own e-commerce) I dont like to have the e-commerce to looks differently from the rest of the websites, so i've made a drupal Page node with php code in the body, that simply include the external app and...

Wildcard searches using dismax handler ?

Hi, I have successfully indexed files, and want to be able to search using wildcards. I am currently using the dismaxRequestHandler (QueryType = dismax) for the searches so that I can search all the fields for the query. A general search like 'computer' returns results but 'com*er' doesn't return any results. Similary, a search like 'c...

problem with wildcards and one class which implements two interfaces

Hi, I have this question. I have class UserImpl implements MyUser, YourUser and class UsersGetterImpl implements MyUsersGetter, YourUsersGetter. I want to implement a method inside UsersGetterImpl, which returns List<MyUser> getUsers() for MyUsersGetterinterface, and List<YourUser> getUsers() for YourUsersGetterinterface, but I cannot...

Are wildcards allowed in sitemap.xml file ?

Hi, I have a website that has a directory that contains 100+ html files. I want crawlers to crawl all the html files that directory. I have already added following sentence to my robots.txt: Allow /DirName/*.html$ Is there any way to include the files in the directory in sitemap.xml file so that all html files in the directory will ...

SQL wildcards not returning data?

I have a select statement that is used in a gridview via a stored procedure: SELECT * FROM T_Computer WHERE (ISTag LIKE '%' + @ISTag + '%') AND Status <> 'Trashed' AND Status <> 'Sold' AND Status <> 'Stored' The @ISTag, an nchar is determined by a textbox value, if the textbox is empty I have the default value set to %, which in my mi...

Wildcards in MS Access SQL

Hi, I've written this SQL query in MS Access: SELECT * FROM Students WHERE name like '_a*' Which produces no results, even though I have names like danny and sara in the Students table. THe '_' wildcard doesn't seem to work. BTW, like '*a*' does return all names with a in them. And ideas? ...

Python - Regular Expression Wildcards from Socket data?

Hello everyone. I have a question regarding regular expressions in Python. The expressions are composed of data that would be read from a server, connected via socket. I'm trying to use and read wildcards in these expressions. Example: Let's say I run a chat server. When a message is recieved, the server sends to all clients (JSmith send...

defect in ADAM? search using wildcards returns wrong results

Hi Guys, I've tried to Google it out, but i couldn't find any useful information. Problem is as following: My application uses ADAM (Active Directory Application Mode) to store some fancy objects, no big deal. I'm using DirectorySearcher class and wildcards to filter list of those objects - still nothing unusual. Everything works a...