![如何使用规则填充获取另一列的子字符串](https://linux22.com/image/1677189/%E5%A6%82%E4%BD%95%E4%BD%BF%E7%94%A8%E8%A7%84%E5%88%99%E5%A1%AB%E5%85%85%E8%8E%B7%E5%8F%96%E5%8F%A6%E4%B8%80%E5%88%97%E7%9A%84%E5%AD%90%E5%AD%97%E7%AC%A6%E4%B8%B2.png)
我正在尝试使用 LEFT、RIGHT 和 SEARCH 函数将从另一列中提取的函数名称填充到一列中,但没有得到任何好的结果。
我有一个如下功能列表:
def _handle_push(self, word)
def _handle_table_reset(self, word)
def _handle_sentinel(self, word)
def _handle_struct(self, word)
def _handle_define_table(self, word)
def _handle_debug(self, word)
def _handle_copy(self, word)
def _handle_end_row(self, word)
def _handle_placeholder_count(self, word)
def _handle_convert_mach_continuous(self, word)
例如,如果我选择第一个
def _handle_push(self, word)
我想要存储在另一列中的结果是
_handle_push
但我不知道如何实现这一点。
任何建议将被认真考虑。