avatar
i*t
1
非 IT
大公司 很大

请问能negotition 各种package吗? 一般有什么策略和技巧 多谢!
avatar
g*s
2
还是OPT, H-1还没有开始申请,已经拿到contract了。
avatar
y*a
3
>>> import re
>>> re.sub(r'\$xxx', 'yyy', '$xxxxx')
'yyyxx'
为啥会MATCH&REPLACE?
我的理解是 r'\$xxx' 就是‘\$xxx', 所以'$xxxxx'不会MATCH,不应该有REPLACE发生
。 ANY COMMENT? THX
When an "r" or "R" prefix is present, a character following a backslash is
included in the string without change, and all backslashes are left in the
string. For example, the string literal r"\n" consists of two characters: a
backslash and a lowercase "n". String quotes can be escaped with a backslash
, but the backslash remains in the string; for example, r""" is a valid
string literal consisting of two characters: a backslash and a double quote;
r"" is not a valid string literal (even a raw string cannot end in an odd
number of backslashes). Specifically, a raw string cannot end in a single
backslash (since the backslash would escape the following quote character).
Note also that a single backslash followed by a newline is interpreted as
those two characters as part of the string, not as a line continuation.
avatar
s*x
4
当然可以,一个原则,谁先露底价谁就输了。等hr先说,然后你再提,想好了再提,人
家答应了你再反悔就不厚道了。base实在不给涨就在sign on之类的一次性的东西上再
商量
avatar
g*s
5
没人回?自己顶一下
avatar
l*s
6
first argument is pattern.
avatar
t*3
7
如果对方说了一个数目,但没有明确说可以negotiation,我怎么知道是否可以讨价还
价呢?
avatar
t*1
8
我问的银行都要求H1B
avatar
e*o
9
>>> re.sub(r'xxx$', 'yyy', '$xxxxx')
'$xxyyy'
>>> re.sub(r'\$xxx', 'yyy', '$xxxxx')
'yyyxx'
>>>
'$' is a metacharacter, in regex, match the end of string.
and '\$' match character '$'
avatar
f*e
10
fresh基本没戏,有经验的可以

【在 i******t 的大作中提到】
: 非 IT
: 大公司 很大
:
: 请问能negotition 各种package吗? 一般有什么策略和技巧 多谢!

avatar
b*3
11
没有H1B approval,不要浪费时间了。
avatar
y*a
12
according to "When an "r" or "R" prefix is present, a character following a
backslash is
included in the string without change, and all backslashes are left in the
string."
r"\$xxx" should be a string whose first character is "\" and 2nd is "$", but
$xxxxx doesn't have "\", therefore there should be no match.
Is my understanding of the prefix 'r' wrong?
avatar
s*x
13
Fresh也可以,offer都可以商量
avatar
g*s
14
如果夫妻两个一个F1,一个H1,可是F1的工资现在比H1要高,而且H1所在地方不是要买
房的地方,能行么?
avatar
l*s
15
you understand 'r' prefix correctly, but the regex engine sees '$' and
interprets it as'$'

a

【在 y***a 的大作中提到】
: according to "When an "r" or "R" prefix is present, a character following a
: backslash is
: included in the string without change, and all backslashes are left in the
: string."
: r"\$xxx" should be a string whose first character is "\" and 2nd is "$", but
: $xxxxx doesn't have "\", therefore there should be no match.
: Is my understanding of the prefix 'r' wrong?

avatar
s*m
16
尝试一下BOA吧
avatar
y*a
17
no. We are talking about different things.
my understanding is tthat the 'r' prefix will force the regex engine to
leave the backslack "\" in the pattern string, therefore $xxxxx cannot match
since it doesn't have the backslacsh

【在 l*********s 的大作中提到】
: you understand 'r' prefix correctly, but the regex engine sees '$' and
: interprets it as'$'
:
: a

avatar
r*s
18
貌似俺的银行是BOA,也只给H1B贷款。。。
avatar
l*s
19
‘r'的功能就是help里说的那点, 你想多了

match

【在 y***a 的大作中提到】
: no. We are talking about different things.
: my understanding is tthat the 'r' prefix will force the regex engine to
: leave the backslack "\" in the pattern string, therefore $xxxxx cannot match
: since it doesn't have the backslacsh

avatar
g*s
20
问过BOA也是只给H1B,说H1B的工资有点低,但是也能刚刚到线。问题是H1B的文件明年
2月就到期了,接电话的人说只要有I-797就好,我们心里还是不塌实。
avatar
y*a
21
HELP说的很模糊。你能解释一下为什么下面这两个一个MATCH 一个不MATCH吗?
>>> re.sub(r'\\$xxx', 'in' ,r'\\$xxxx')
'\$xxxx'
>>> re.sub(r'\$xxx', 'in' ,r'\$xxxx')
'\\\inx'
>>> r'\\$xxx' in r'\\$xxxx'
True

【在 l*********s 的大作中提到】
: ‘r'的功能就是help里说的那点, 你想多了
:
: match

avatar
z*n
22
说明比较撑
银行的算法已经很aggressive了,他们都觉得工资有点低,是不是真的很撑阿?

【在 g*********s 的大作中提到】
: 问过BOA也是只给H1B,说H1B的工资有点低,但是也能刚刚到线。问题是H1B的文件明年
: 2月就到期了,接电话的人说只要有I-797就好,我们心里还是不塌实。

avatar
l*s
23
because $ is a special character meaning the end, if it not escaped, $xxx
won't match anything.

【在 y***a 的大作中提到】
: HELP说的很模糊。你能解释一下为什么下面这两个一个MATCH 一个不MATCH吗?
: >>> re.sub(r'\\$xxx', 'in' ,r'\\$xxxx')
: '\$xxxx'
: >>> re.sub(r'\$xxx', 'in' ,r'\$xxxx')
: '\\\inx'
: >>> r'\\$xxx' in r'\\$xxxx'
: True

avatar
l*l
24
银行觉得撑是因为lz他们只以一个h1贷款吧。。。不是还有个收入更高的f1嘛。

【在 z*********n 的大作中提到】
: 说明比较撑
: 银行的算法已经很aggressive了,他们都觉得工资有点低,是不是真的很撑阿?

avatar
h*e
25
这个F1工资比H1高比较有意思,能不能说说怎么回事?

【在 g*********s 的大作中提到】
: 如果夫妻两个一个F1,一个H1,可是F1的工资现在比H1要高,而且H1所在地方不是要买
: 房的地方,能行么?

avatar
g*s
26
撑我们到不怕,F1的工资几乎是H1的三倍,就是还没来得及申请H1。
怕的是银行不给贷款。

【在 z*********n 的大作中提到】
: 说明比较撑
: 银行的算法已经很aggressive了,他们都觉得工资有点低,是不是真的很撑阿?

avatar
g*s
27
就是刚刚开始工做,还是CPT,OPT的状态。

【在 h*********e 的大作中提到】
: 这个F1工资比H1高比较有意思,能不能说说怎么回事?
avatar
s*m
28
BSO

【在 g*********s 的大作中提到】
: 撑我们到不怕,F1的工资几乎是H1的三倍,就是还没来得及申请H1。
: 怕的是银行不给贷款。

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。