Simple regexes like that one will match all sequences of characters found;
if you want to find those character as a single "word", you will need to
use word boundaries.
Change the pattern init to this and it works (at least, according to the
string you gave):
pattern = QtCore.QRegExp(r'\b{}\b'.format(self.lineEdit.text()))
Have a look at this, too: https://stackoverflow.
com/questions/40731058/regex-match-arabic-keyword
As a side note, forgive my bluntness, but you might want to read some more
documentation about regex and right-to-left languages practices.
The latest questions you asked were not python nor qt related at all, and,
as you might understand, most of the people on this mailing list don't even
know how arabic language works; a bit of context might be useful, so that
even people not experienced with those language might help too.
Also, try to simplify examples by limiting code to what is really related
to your issue: those geometry, font and widget settings won't help anyone
reading your code. The same example could have been written in less than
half lines, and would have been much more readable: easier to read is
easier to understand and easier to help.
Finally, avoid mixing the way you import modules. You should import from
the main module _OR_ from the submodules. While it doesn't change much in
terms of computation, it decreases the possibility of bugs and improves
readibility, which is better for everybody reading your code, including you
:-)
Maurizio
2018-09-01 20:33 GMT+02:00 Maziar Parsijani <maziar.parsijani at gmail.com>:
> I want to select 2 "قَالَ" in m = "قَالَتْ قَالَ فَقَالُوا۟ قَالُوا۟
> قَالَ قَالُوٓا۟ قَالَتَا ٱلْقَالِينَ " but with the below code it
> selects all words which contains " "قَالَ"
> Now what is the problem here?
> I have to put spaces before and after pattern1 for such thing but it
> doesn't work for me.
>> pattern1 = " {0} ".format(self.lineEdit.text())
>>> from PyQt5 import QtCore, QtGui, QtWidgets
> from PyQt5.QtWidgets import QApplication, QTextEdit
> from PyQt5.QtGui import QTextDocument, QTextDocumentFragment
> from PyQt5 import QtCore, QtGui, QtWidgets
> import sys
> from PyQt5.QtWidgets import QDialog, QApplication
> class AppWindow(QDialog):
> def __init__(self):
> super().__init__()
> self.setObjectName("Dialog")
> self.resize(800, 600)
> self.lineEdit = QtWidgets.QLineEdit(self)
> self.lineEdit.setGeometry(QtCore.QRect(70, 70, 211, 21))
> self.lineEdit.setObjectName("lineEdit")
> self.pushButton = QtWidgets.QPushButton(self)
> self.pushButton.setGeometry(QtCore.QRect(130, 110, 83, 28))
> self.pushButton.setObjectName("pushButton")
> self.SearchResults = QtWidgets.QTextEdit(self)
> self.SearchResults.setGeometry(QtCore.QRect(130, 140, 500, 400))
> font = QtGui.QFont()
> font.setFamily("Amiri")
> font.setPointSize(12)
> self.SearchResults.setFont(font)
> self.SearchResults.setToolTipDuration(0)
> self.SearchResults.setReadOnly(True)
> self.SearchResults.setAutoFormatting(QtWidgets.QTextEdit.AutoAll)
> self.SearchResults.setObjectName("SearchResults")
>> self.retranslateUi(self)
> QtCore.QMetaObject.connectSlotsByName(self)
> def find1(self):
> m = " قَالَتْ قَالَ فَقَالُوا۟ قَالُوا۟ قَالَ قَالُوٓا۟ قَالَتَا ٱلْقَالِينَ "
> self.SearchResults.append('{0} '.format(m))
>>> cursor = self.SearchResults.textCursor()
> format = QtGui.QTextCharFormat()
> format.setForeground(QtGui.QBrush(QtGui.QColor("red")))
>> pattern1 = "{0}".format(self.lineEdit.text())
> regex = QtCore.QRegExp(pattern1)
> pos = 0
> index = regex.indexIn(self.SearchResults.toPlainText(), pos)
> tedad = 0
> while (index != -1):
> cursor.setPosition(index)
> cursor.movePosition(QtGui.QTextCursor.WordLeft, QtGui.QTextCursor.KeepAnchor)
> cursor.mergeCharFormat(format)
> pos = index + regex.matchedLength()
> index = regex.indexIn(self.SearchResults.toPlainText(), pos)
> if regex.isValid():
> tedad += 1
> nmayesh = ("{}".format(tedad))
> self.SearchResults.append("{}".format(tedad))
>> def retranslateUi(self, Dialog):
> _translate = QtCore.QCoreApplication.translate
> self.setWindowTitle(_translate("Dialog", "Dialog"))
> self.pushButton.setText(_translate("Dialog", "PushButton"))
> self.pushButton.clicked.connect(self.find1)
>> app = QApplication(sys.argv)
> w = AppWindow()
> w.show()
> sys.exit(app.exec_())
>>> _______________________________________________
> PyQt mailing list PyQt at riverbankcomputing.com>/mailman/listinfo/pyqt>
--
È difficile avere una convinzione precisa quando si parla delle ragioni del
cuore. - "Sostiene Pereira", Antonio Tabucchi
http://www.jidesk.net
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/pyqt/attachments/20180901/c4a98042/attachment-0001.html>
More information about the PyQt
mailing list
She has never mentioned her father to me. Was hewell, the sort of man whom the County Club would not have blackballed? "We walked by the side of our teams or behind the wagons, we slept on the ground at night, we did our own cooking, we washed our knives by sticking them into the ground rapidly a few times, and we washed our plates with sand and wisps of grass. When we stopped, we arranged our wagons in a circle, and thus formed a 'corral,' or yard, where we drove our oxen to yoke them up. And the corral was often very useful as a fort, or camp, for defending ourselves against the Indians. Do you see that little hollow down there?" he asked, pointing to a depression in the ground a short distance to the right of the train. "Well, in that hollow our wagon-train was kept three days and nights by the Indians. Three days and nights they stayed around, and made several attacks. Two of our men were killed and three were wounded by their arrows, and others had narrow escapes. One arrow hit me on the throat, but I was saved by the knot of my neckerchief, and the point only tore the skin a little. Since that time I have always had a fondness for large neckties. I don't know how many of the Indians we killed, as they carried off their dead and wounded, to save them from being scalped. Next to getting the scalps of their enemies, the most important thing with the Indians is to save their own. We had several fights during our journey, but that one was the worst. Once a little party of us were surrounded in a small 'wallow,' and had a tough time to defend ourselves successfully. Luckily for us, the Indians had no fire-arms then, and their bows and arrows were no match for our rifles. Nowadays they are well armed, but there are[Pg 41] not so many of them, and they are not inclined to trouble the railway trains. They used to do a great deal of mischief in the old times, and many a poor fellow has been killed by them." As dusk came on nearly the whole population of Maastricht, with all their temporary guests, formed an endless procession and went to invoke God's mercy by the Virgin Mary's intercession. They went to Our Lady's Church, in which stands the miraculous statue of Sancta Maria Stella Maris. The procession filled all the principal streets and squares of the town. I took my stand at the corner of the Vrijthof, where all marched past me, men, women, and children, all praying aloud, with loud voices beseeching: "Our Lady, Star of the Sea, pray for us ... pray for us ... pray for us ...!" It had not occurred to her for some hours after Mrs. Campbell had told her of Landor's death that she was free now to give herself to Cairness. She had gasped, indeed, when she did remember it, and had put the thought away, angrily and self-reproachfully. But it returned now, and she felt that she might cling to it. She had been grateful, and she had been faithful, too.[Pg 286] She remembered only that Landor had been kind to her, and forgot that for the last two years she had borne with much harsh coldness, and with a sort of contempt which she felt in her unanalyzing mind to have been entirely unmerited. Gradually she raised herself until she sat quite erect by the side of the mound, the old exultation of her half-wild girlhood shining in her face as she planned the future, which only a few minutes before had seemed so hopeless. After he had gloated over Sergeant Ramsey, Shorty got his men into the road ready to start. Si placed himself in front of the squad and deliberately loaded his musket in their sight. Shorty took his place in the rear, and gave out: The groups about each gun thinned out, as the shrieking fragments of shell mowed down man after man, but the rapidity of the fire did not slacken in the least. One of the Lieutenants turned and motioned with his saber to the riders seated on their horses in the line of limbers under the cover of the slope. One rider sprang from each team and ran up to take the place of men who had fallen. "As long as there's men and women in the world, the men 'ull be top and the women bottom." Then, in the house, the little girls were useful. Mrs. Backfield was not so energetic as she used to be. She had never been a robust woman, and though her husband's care had kept her well and strong, her frame was not equal to Reuben's demands; after fourteen years' hard labour, she suffered from rheumatism, which though seldom acute, was inclined to make her stiff and slow. It was here that Caro and Tilly came in, and Reuben began to appreciate his girls. After all, girls were needed in a houseand as for young men and marriage, their father could easily see that such follies did not spoil their usefulness or take them from him. Caro and Tilly helped their grandmother in all sorts of waysthey dusted, they watched pots, they shelled peas and peeled potatoes, they darned house-linen, they could even make a bed between them. HoMEһëƬƵѹ
ENTER NUMBET 0018www.b008.com.cn www.caroom.com.cn laijianshen.com.cn www.zhonghao888.net.cn bsgt.com.cn www.ninenm.com.cn bszn018.com.cn goliga.com.cn www.vygp.com.cn www.xcbyxd.com.cn